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 8b03c0d commit 324e542Copy full SHA for 324e542
.github/workflows/tangled-mirror.yml
@@ -27,7 +27,9 @@ jobs:
27
run: git remote add tangled $TANGLED_REPO_URL
28
29
- name: Decode SSH key
30
- run: echo $TANGLED_SSH_KEY | base64 --decode "$RUNNER_TEMP/ssh.key"
+ run: |
31
+ mkdir -p "$RUNNER_TEMP"
32
+ echo $TANGLED_SSH_KEY | base64 --decode "$RUNNER_TEMP/ssh.key"
33
34
- name: Push Repo to Mirror
35
run: |
0 commit comments