Skip to content

Commit 188c831

Browse files
committed
fix: fix issue with macOS asset uploads
1 parent 47d0897 commit 188c831

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/cd.yml

+4
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,10 @@ jobs:
7171
else
7272
shasum -a 256 jwt-${{ matrix.artifact_prefix }}.tar.gz > jwt-${{ matrix.artifact_prefix }}.sha256
7373
fi
74+
if [ "$RUNNER_OS" == "macOS" ]; then
75+
mv jwt-${{ matrix.artifact_prefix }}.tar.gz target/${{ matrix.target }}/release/jwt-${{ matrix.artifact_prefix }}.tar.gz
76+
mv jwt-${{ matrix.artifact_prefix }}.sha256 target/${{ matrix.target }}/release/jwt-${{ matrix.artifact_prefix }}.sha256
77+
fi
7478
- name: Releasing assets
7579
uses: softprops/action-gh-release@v1
7680
if: ${{ github.event_name == 'push' }}

0 commit comments

Comments
 (0)