2021-09-09 22:38:29 +09:00
|
|
|
name: 'Deploy to Netlify (dev)'
|
2021-09-02 00:31:24 +09:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
name: 'Deploy'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2021-11-18 21:41:12 +09:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-11-18 21:44:49 +09:00
|
|
|
node-version: [17x]
|
2021-11-18 21:41:12 +09:00
|
|
|
|
2021-09-02 00:31:24 +09:00
|
|
|
steps:
|
2021-11-18 21:41:12 +09: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-02 00:31:24 +09: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
|