Skip to content

Commit

Permalink
Merge pull request #4 from ohermosa/fix/go_1.15.1
Browse files Browse the repository at this point in the history
define go_version independient of the code
  • Loading branch information
osmollo authored Sep 7, 2020
2 parents d28ed80 + 36ed9b2 commit a2a735b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/go_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,11 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@v2

- name: Read package.json
uses: tyankatsu0105/read-package-version-actions@v1
id: package-version

- name: Build gorkscrew binary
uses: wangyoucao577/go-release-action@master
with:
github_token: ${{ secrets.TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: "https://dl.google.com/go/go1.14.7.linux-amd64.tar.gz"
goversion: "https://dl.google.com/go/go${{ secrets.GO_VERSION }}.linux-amd64.tar.gz"
pre_command: go get -v github.com/jcmturner/gokrb5/v8/client github.com/jcmturner/gokrb5/v8/config github.com/jcmturner/gokrb5/v8/credentials github.com/jcmturner/gokrb5/v8/spnego
4 changes: 2 additions & 2 deletions .github/workflows/pr_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
run: |
grep package.json $HOME/files.json
- name: Set up Go 1.15.1
- name: Set up Go ${{ secrets.GO_VERSION }}
uses: actions/setup-go@v1
with:
go-version: 1.15.1
go-version: ${{ secrets.GO_VERSION }}

- name: Get dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "1.0.9"
"version": "1.0.10"
}

0 comments on commit a2a735b

Please sign in to comment.