Skip to content

update netlify headers: #113

update netlify headers:

update netlify headers: #113

Workflow file for this run

# On every push this script is executed
on: push
name: Build and deploy GH Pages
jobs:
build:
runs-on: ubuntu-latest
# Skip the workflow
# if: github.ref == 'refs/heads/main'
if: false
steps:
- name: checkout
uses: actions/checkout@v3.0.0
- name: build_and_deploy
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
script: |
export NVM_DIR=~/.nvm
source ~/.nvm/nvm.sh
cd /home/enreda/new
git pull
nvm use 16
npm ci
npm run build
service nginx reload