Install the ssh key
Some checks failed
Build and copy to prod / build-and-copy (push) Failing after 1m50s

This commit is contained in:
Lewis Dale 2024-03-07 14:06:01 +00:00
parent 91f05d9824
commit e63b2e6921

View File

@ -19,7 +19,9 @@ jobs:
env:
NODE_ENV: production
OMNIVORE_API_KEY: ${{ secrets.OMNIVORE_API_KEY }}
- name: Create ssh key
run: mkdir ~/.ssh && echo "${{ secrets.SSH_KEY }}" >> ~/.ssh/id_rsa
- name: Install SSH Key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.SSH_KEY }}
- name: Copy _site to prod
run: scp -rp _site/ ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:/var/www/html