Skip to content

Nightly Build to Netlify #458

Nightly Build to Netlify

Nightly Build to Netlify #458

Workflow file for this run

name: Nightly Build to Netlify
on:
schedule:
- cron: "0 0 * * *"
jobs:
build:
name: Build to Netlify
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build
- run: npm run check:version
continue-on-error: true
- name: Deploy to Netlify
uses: nwtgck/[email protected]
if: success()
with:
publish-dir: './dist'
production-deploy: true
production-branch: master
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: "Deploy from GitHub Actions"
enable-pull-request-comment: false
enable-commit-comment: false
overwrites-pull-request-comment: true
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_DATA_SITE_ID }}