Skip to content

Merge pull request #94 from stormid/feature/safari-table-relative #9

Merge pull request #94 from stormid/feature/safari-table-relative

Merge pull request #94 from stormid/feature/safari-table-relative #9

Workflow file for this run

name: Deploy to Netlify
on:
push:
branches: release/**
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout repo
- uses: actions/checkout@v3
- name: Install Dependencies
run: npm ci
- name: Build site
run: npm run build
# Deploy the site with netlify-cli
- name: Deploy Site
env:
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
run: netlify deploy --dir=build --prod