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 122deab commit ed34bfbCopy full SHA for ed34bfb
.github/workflows/release.yml
@@ -48,10 +48,11 @@ jobs:
48
uses: grails/github-actions/pre-release@main
49
with:
50
token: ${{ secrets.GITHUB_TOKEN }}
51
- - name: "📝 Generate secring file"
+ - name: "🔐 Generate key file for artifact signing"
52
env:
53
- SECRING_FILE: ${{ secrets.SECRING_FILE }}
54
- run: echo $SECRING_FILE | base64 -d > ${{ github.workspace }}/secring.gpg
+ SECRING_FILE: ${{ secrets.SECRING_FILE }}
+ run: |
55
+ printf "%s" "$SECRING_FILE" | base64 -d > "${{ github.workspace }}/secring.gpg"
56
- name: "🧩 Run Assemble"
57
if: success()
58
id: assemble
0 commit comments