From d57f0799aded1498d63809221bf3d833348d8e33 Mon Sep 17 00:00:00 2001 From: Doychin Atanasov Date: Mon, 27 Mar 2023 22:50:11 +0300 Subject: [PATCH] Update the GitHub actions of the release pipeline --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 00b4313..fca7d99 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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 @@ -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: @@ -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