2021-09-09 16:38:29 +03:00
|
|
|
name: 'Deploy to Netlify (dev)'
|
2021-09-01 18:31:24 +03:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
name: 'Deploy'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2021-11-18 14:41:12 +02:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-11-18 14:44:49 +02:00
|
|
|
node-version: [17x]
|
2021-11-18 14:41:12 +02:00
|
|
|
|
2021-09-01 18:31:24 +03:00
|
|
|
steps:
|
2021-11-18 14:41:12 +02:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
2021-09-01 18:31:24 +03:00
|
|
|
- uses: jsmrcaga/action-netlify-deploy@master
|
|
|
|
with:
|
|
|
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
|
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE2_ID }}
|
|
|
|
BUILD_DIRECTORY: "dist"
|
|
|
|
NETLIFY_DEPLOY_MESSAGE: "Dev deploy v${{ github.ref }}"
|
|
|
|
NETLIFY_DEPLOY_TO_PROD: true
|