will it push?
This commit is contained in:
parent
97b166401e
commit
0b0e323272
1 changed files with 13 additions and 1 deletions
|
@ -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
|
Loading…
Add table
Reference in a new issue