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 f028d35 commit ae3a49eCopy full SHA for ae3a49e
.github/workflows/publish-to-maven-central.yml
@@ -18,10 +18,12 @@ jobs:
18
java-version: 11
19
- name: Grant execute permission for gradlew
20
run: chmod +x gradlew
21
- - name: Extract keyring
22
- run: |
23
- echo "${{secrets.SIGNING_SECRET_KEY_RING_FILE}}" > secring.gpg.b64
24
- base64 -d secring.gpg.b64 > secring.gpg
+ - name: Run Workflow
+ uses: timheuer/base64-to-file@v1
+ with:
+ fileName: 'secring.gpg'
25
+ fileDir: .
26
+ encodedString: ${{secrets.SIGNING_SECRET_KEY_RING_FILE}}
27
- name: Publish
28
uses: gradle/gradle-build-action@v2
29
with:
0 commit comments