Skip to content
This repository has been archived by the owner on Nov 6, 2024. It is now read-only.

Updates for Mint 0.19.0 #20

Updates for Mint 0.19.0

Updates for Mint 0.19.0 #20

Workflow file for this run

name: CI
on:
push:
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.19.0
- name: Install dependencies
run: mint install
- name: Build
run: mint build -e .env.production
- 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 }}