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 windowsboy111
parent e7844d5b7d
commit 9717f09d20
+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 (Python)
run: bash ./update.sh