From 4cc8ed42d5ed5a910c93d58a2c0e17df814683f8 Mon Sep 17 00:00:00 2001 From: Michael Herstine Date: Wed, 9 Oct 2024 20:37:38 -0700 Subject: [PATCH] Fix release workflow --- .github/workflows/release.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ba2510a..67bed62 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,8 +24,8 @@ jobs: name: create-release runs-on: ubuntu-latest # Un-comment this for testing - # env: - # RELEASE_VERSION: 0.6.23 + env: + RELEASE_VERSION: 0.7.1 steps: - name: Create artifacts directory run: mkdir artifacts @@ -53,7 +53,7 @@ jobs: run: echo "${{ env.RELEASE_VERSION }}" > artifacts/release-version - name: Upload artifacts - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: artifacts path: artifacts @@ -62,6 +62,7 @@ jobs: # This job will actually create the artifacts I want to include with # the release #################################################################### + build-release: name: build-release needs: ['create-release'] @@ -155,7 +156,7 @@ jobs: sudo apt-get install -y libboost-all-dev - name: Get release download URL - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v4 with: name: artifacts path: artifacts