cinny/.github/workflows/netlify-dev.yml

40 lines
1.2 KiB
YAML
Raw Normal View History

2022-12-14 14:17:10 +09:00
name: Deploy to Netlify (dev)
2021-09-02 00:31:24 +09:00
on:
push:
branches:
- dev
2021-09-02 00:31:24 +09:00
jobs:
deploy-to-netlify:
2022-12-14 14:17:10 +09:00
name: Deploy to Netlify
2021-09-02 00:31:24 +09:00
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.3
- name: Setup node
uses: actions/setup-node@v3.8.1
with:
node-version: 20.12.2
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build app
env:
NODE_OPTIONS: '--max_old_space_size=4096'
run: npm run build
- name: Deploy to Netlify
uses: nwtgck/actions-netlify@7a92f00dde8c92a5a9e8385ec2919775f7647352
2021-09-02 00:31:24 +09:00
with:
publish-dir: dist
deploy-message: 'Dev deploy ${{ github.sha }}'
enable-commit-comment: false
github-token: ${{ secrets.GITHUB_TOKEN }}
production-deploy: true
github-deployment-environment: nightly
github-deployment-description: 'Nightly deployment on each commit to dev branch'
env:
2021-09-02 00:31:24 +09:00
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
2022-12-14 14:17:10 +09:00
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID_DEV }}
timeout-minutes: 1