Skip to content

Commit

Permalink
fix: fix issue with macOS asset uploads
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-engel committed Aug 21, 2024
1 parent 47d0897 commit 188c831
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ jobs:
else
shasum -a 256 jwt-${{ matrix.artifact_prefix }}.tar.gz > jwt-${{ matrix.artifact_prefix }}.sha256
fi
if [ "$RUNNER_OS" == "macOS" ]; then
mv jwt-${{ matrix.artifact_prefix }}.tar.gz target/${{ matrix.target }}/release/jwt-${{ matrix.artifact_prefix }}.tar.gz
mv jwt-${{ matrix.artifact_prefix }}.sha256 target/${{ matrix.target }}/release/jwt-${{ matrix.artifact_prefix }}.sha256
fi
- name: Releasing assets
uses: softprops/action-gh-release@v1
if: ${{ github.event_name == 'push' }}
Expand Down

0 comments on commit 188c831

Please sign in to comment.