Skip to content

Commit 1506a44

Browse files
committed
[skip ci] attempting to fix secring extraction
1 parent b3419a4 commit 1506a44

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ jobs:
5252
- name: "🔐 Generate key file for artifact signing"
5353
env:
5454
SECRING_FILE: ${{ secrets.SECRING_FILE }}
55-
run: echo $SECRING_FILE | base64 -d > ${{ github.workspace }}/secring.gpg
55+
run: |
56+
printf "%s" "$SECRING_FILE" | base64 -d > "${{ github.workspace }}/secring.gpg"
5657
- name: "🧩 Run Assemble"
5758
id: assemble
5859
run: |

0 commit comments

Comments
 (0)