Skip to content

Commit

Permalink
Standardise actions filenames and go version
Browse files Browse the repository at this point in the history
This changes the name of "ci-only" action to build as per comments in
openfaas/faas#1585. Also pins go version
based on the same

Signed-off-by: Alistair Hey <[email protected]>
  • Loading branch information
Waterdrips committed Nov 11, 2020
1 parent 1ab484d commit 16d0c69
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-only.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ci-only
name: build

on:
push:
Expand All @@ -17,7 +17,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.13
go-version: ${{ matrix.go-version }}

- uses: actions/checkout@master
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
- uses: actions/checkout@master
with:
fetch-depth: 1
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Make all
run: make all
- name: Upload release binaries
Expand Down

0 comments on commit 16d0c69

Please sign in to comment.