Merge pull request #94 from stormid/feature/safari-table-relative #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |