Skip to content

closes #115

closes #115 #161

Workflow file for this run

name: Deploy to Netlify
on:
workflow_dispatch:
push:
branches:
- master
jobs:
build:
name: Deploy
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [18]
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 test
- run: npm run build:netlify
- name: Deploy to Netlify
uses: nwtgck/[email protected]
with:
publish-dir: "./dist/app/browser"
production-deploy: ${{ github.ref_name == 'master' }}
production-branch: master
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: "Deploy from GitHub Actions"
enable-pull-request-comment: false
enable-commit-comment: true
overwrites-pull-request-comment: true
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}