Skip to content

Final updates for 0.20.0 #63

Final updates for 0.20.0

Final updates for 0.20.0 #63

Workflow file for this run

name: CI
on:
push:
branches:
- master
tags:
- "*"
pull_request:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Download source
uses: actions/checkout@v2
- name: Install Mint
uses: fabasoad/setup-mint-action@main
with:
version: 0.20.0
- name: Install dependencies
run: mint install
- name: Build
run: mint build
- if: github.ref == 'refs/heads/master'
name: Deploy to Netlify
uses: nwtgck/actions-netlify@v1.2
with:
production-deploy: true
publish-dir: dist
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}