We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17db8c1 commit 051fa8dCopy full SHA for 051fa8d
.github/workflows/java-test.yaml
@@ -152,8 +152,13 @@ jobs:
152
- name: Deploy to Github Packages
153
working-directory: java
154
run: |
155
- mvn clean package deploy -DskipTests=true -DserverId=github -s ../.github/mvn-settings.xml
+ mvn clean package deploy \
156
+ -DskipTests=true \
157
+ -Djni.classifier=${{ matrix.classifier }} \
158
+ -Dcargo-build.profile=release \
159
+ -DserverId=github \
160
+ -s ../.github/mvn-settings.xml
161
env:
162
GITHUB_ACTOR: ${{ github.actor }}
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
163
+ GITHUB_TOKEN: ${{ secrets.DEPLOY_ACCESS_TOKEN }}
164
0 commit comments