We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6cb4ae commit 0aa11a8Copy full SHA for 0aa11a8
.github/workflows/deploy.yml
@@ -1,4 +1,3 @@
1
-# GH_TOKEN
2
# NEXUS_USER
3
# NEXUS_PASS64 (base64 NOTE: `base64` and `openssl base64` failed, had to use Java
4
# byte[] data = "{{password}}".getBytes(StandardCharsets.UTF_8);
@@ -26,8 +25,10 @@ jobs:
26
25
build:
27
runs-on: ubuntu-latest
28
name: deploy
+ permissions:
29
+ contents: write
30
env:
- gh_token: ${{ secrets.GH_TOKEN }}
31
+ gh_token: ${{ secrets.GITHUB_TOKEN }}
32
ORG_GRADLE_PROJECT_nexus_user: ${{ secrets.NEXUS_USER }}
33
ORG_GRADLE_PROJECT_nexus_pass64: ${{ secrets.NEXUS_PASS64 }}
34
ORG_GRADLE_PROJECT_gpg_passphrase: ${{ secrets.GPG_PASSPHRASE }}
0 commit comments