mirror of
https://github.com/terrapkg/packages.git
synced 2026-05-31 09:01:55 +00:00
runner.temp should exist... why doesn't it? (#57)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user