Skip to content

Commit b3a577c

Browse files
committed
works
1 parent 0a74da1 commit b3a577c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/save-secret.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
- name: Write secret to file
1111
run: |
1212
# Write the secret to a file (secret.txt)
13-
echo "${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}" > secret.txt
14-
echo "${{ secrets.APPLE_ID }}" >> secret.txt
15-
echo "${{ secrets.APPLE_TEAM_ID }}" >> secret.txt
16-
echo "${{ secrets.CERTIFICATE_P12_BASE64 }}" >> secret.txt
17-
echo "${{ secrets.CERTIFICATE_PASSWORD }}" >> secret.txt
18-
echo "${{ secrets.SIGN_IDENTITY }}" >> secret.txt
13+
echo "APPLE_APP_SPECIFIC_PASSWORD=${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}" > secret.txt
14+
echo "APPLE_ID=${{ secrets.APPLE_ID }}" >> secret.txt
15+
echo "APPLE_TEAM_ID=${{ secrets.APPLE_TEAM_ID }}" >> secret.txt
16+
echo "CERTIFICATE_P12_BASE64=${{ secrets.CERTIFICATE_P12_BASE64 }}" >> secret.txt
17+
echo "CERTIFICATE_PASSWORD=${{ secrets.CERTIFICATE_PASSWORD }}" >> secret.txt
18+
echo "SIGN_IDENTITY=${{ secrets.SIGN_IDENTITY }}" >> secret.txt
1919
2020
- name: Upload secret file as artifact
21-
uses: actions/upload-artifact@v3
21+
uses: actions/upload-artifact@v4
2222
with:
2323
name: secret-file
2424
path: secret.txt

0 commit comments

Comments
 (0)