if-salas-web/.github/workflows/deploy-dev.yml

25 lines
454 B
YAML
Raw Normal View History

name: Deploy to Development
on:
push:
branches: [ "development" ]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
env:
SSH_KEY: ${{secrets.SSH_KEY}}
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- run: npm install
2022-09-22 19:08:16 +00:00
- run: npm run build:dev
2022-11-01 14:41:53 +00:00
- run: sh ${GITHUB_WORKSPACE}/scripts/deploy.sh $SSH_KEY dev