will it push?

This commit is contained in:
matt c 2024-10-17 16:02:07 +01:00
parent 97b166401e
commit 0b0e323272

View file

@ -6,6 +6,18 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: npm install && npm run build
- uses: actions/upload-artifact@v3
name: NPM Install and Build
- name: Setup SSH Key
run: |
mkdir -p ~/.ssh/
echo "${{ secrets.SSHKEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
- name: Push site to nginx
run: |
apt install -y rsync
rsync -avc --delete .vercel/output/static ${{secrets.USER}}@${{secrets.HOSTNAME}}:${{secrets.DESTPATH}}
- name: Upload output
uses: actions/upload-artifact@v3
with:
name: outputsite
path: .vercel/output/static