Skip to content

Commit

Permalink
fix(ci): sha from correct step
Browse files Browse the repository at this point in the history
  • Loading branch information
believer committed Feb 24, 2023
1 parent 62ff94e commit 6bd44d4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
if: needs.next-version.outputs.new_release_published == 'true'
runs-on: ${{ matrix.build.os }}
outputs:
sha: ${{ steps.checksum.outputs.SHA }}
sha: ${{ steps.release.outputs.SHA }}
env:
NAME: supreme-${{ needs.next-version.outputs.new_release_version }}-aarch64-apple-darwin
CARGO: cargo
Expand Down Expand Up @@ -134,6 +134,7 @@ jobs:
run: ${{ env.CARGO }} build --bin supreme --release --target ${{ matrix.build.target }}

- name: Create release archive
id: release
run: |
mkdir "$NAME"
cp target/${{ matrix.build.target }}/release/supreme "$NAME/"
Expand Down

0 comments on commit 6bd44d4

Please sign in to comment.