There was an error while loading. Please reload this page.
1 parent 8fe39b1 commit d723184Copy full SHA for d723184
1 file changed
.github/workflows/ci.yml
@@ -75,9 +75,21 @@ jobs:
75
exit 1
76
fi
77
78
+ - name: Generate Access Token
79
+ id: generate-token
80
+ uses: actions/create-github-app-token@v2
81
+ with:
82
+ app-id: ${{ vars.DREMIO_RELEASE_BOT_APP_ID }}
83
+ private-key: ${{ secrets.DREMIO_RELEASE_BOT_PRIVATE_KEY }}
84
+
85
- name: Gradle JReleaser Full Release Dry-Run
86
+ env:
87
+ JRELEASER_DRY_RUN: true
88
+ JRELEASER_GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}
89
+ JRELEASER_GPG_PASSPHRASE: ${{ secrets.DEVBOT_GPG_PASSPHRASE }}
90
+ JRELEASER_GPG_SECRET_KEY: ${{ secrets.DEVBOT_GPG_PRIVATE_KEY }}
91
run: |
- JRELEASER_DRY_RUN=true ./gradlew --scan jreleaserFullRelease
92
+ ./gradlew --scan jreleaserFullRelease
93
94
- name: Archive Test Results
95
uses: actions/upload-artifact@v4
0 commit comments