Skip to content

Commit

Permalink
Fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sp1ff committed Oct 10, 2024
1 parent d227657 commit 4cc8ed4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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']
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 4cc8ed4

Please sign in to comment.