Skip to content

Commit

Permalink
Fix release action
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyLeite committed Sep 6, 2023
1 parent 6681f77 commit 1ff0b9d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ env:
jobs:
build:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.build.outputs.version }}
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -49,6 +51,8 @@ jobs:
contents: write
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v3

- uses: actions/download-artifact@v3
with:
name: decky
Expand All @@ -60,4 +64,4 @@ jobs:
prerelease: ${{ github.event.inputs.releaseAsPrerelease || true }}
artifactErrorsFailBuild: true
artifactContentType: "application/octet-stream"
tag: ${{ steps.build.outputs.version }}
tag: ${{ needs.build.outputs.version }}

0 comments on commit 1ff0b9d

Please sign in to comment.