Skip to content

Commit 324e542

Browse files
committed
Actions (Tangled Mirror): Make sure RUNNER_TEMP exists
1 parent 8b03c0d commit 324e542

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/tangled-mirror.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ jobs:
2727
run: git remote add tangled $TANGLED_REPO_URL
2828

2929
- name: Decode SSH key
30-
run: echo $TANGLED_SSH_KEY | base64 --decode "$RUNNER_TEMP/ssh.key"
30+
run: |
31+
mkdir -p "$RUNNER_TEMP"
32+
echo $TANGLED_SSH_KEY | base64 --decode "$RUNNER_TEMP/ssh.key"
3133
3234
- name: Push Repo to Mirror
3335
run: |

0 commit comments

Comments
 (0)