Skip to content

Commit

Permalink
Update the GitHub actions of the release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
ironsmile committed Mar 27, 2023
1 parent 274eca1 commit d57f079
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:

- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
Expand All @@ -30,7 +30,7 @@ jobs:
./tools/build
- name: Upload Linux (amd64) Artefact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: linux-amd64
path: dist/euterpe_*.tar.gz
Expand All @@ -40,6 +40,9 @@ jobs:
runs-on: macos-latest
steps:

- name: Check out code
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
Expand All @@ -51,16 +54,13 @@ jobs:
brew update
brew install libtag upx
- name: Check out code
uses: actions/checkout@v2

- name: Build Release Bundle
id: macos_bundle
run: |
./tools/build
- name: Upload macOS (amd64) Artefact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: macos-amd64
path: dist/euterpe_*.tar.gz
Expand Down

0 comments on commit d57f079

Please sign in to comment.