diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 139a72d..13b66a4 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -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 \ No newline at end of file