runner.temp should exist... why doesn't it? (#57)

This commit is contained in:
lleyton
2022-12-05 15:19:36 -08:00
committed by GitHub
parent db7bc9b20c
commit 6b2f4d455f
+3 -1
View File
@@ -24,7 +24,9 @@ jobs:
ssh-key: ${{ secrets.SSH_AUTHENTICATION_KEY }}
- name: Install SSH signing key
run: echo "${{ secrets.SSH_SIGNING_KEY }}" > ${{ runner.temp }}/signing_key
run: |
mkdir -p ${{ runner.temp }}
echo "${{ secrets.SSH_SIGNING_KEY }}" > ${{ runner.temp }}/signing_key
- name: Run Update
run: bash ./update.sh