We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47d0897 commit 188c831Copy full SHA for 188c831
.github/workflows/cd.yml
@@ -71,6 +71,10 @@ jobs:
71
else
72
shasum -a 256 jwt-${{ matrix.artifact_prefix }}.tar.gz > jwt-${{ matrix.artifact_prefix }}.sha256
73
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
78
- name: Releasing assets
79
uses: softprops/action-gh-release@v1
80
if: ${{ github.event_name == 'push' }}
0 commit comments