2020-08-08 12:35:23 +02:00

65 lines
1.4 KiB
YAML

name: CI
on: [push, pull_request]
env:
VERSION: ${{ github.sha }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Install dependencies
run: yarn install
- name: Build
run: VUE_APP_VERSION=$VERSION yarn build
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: dist
path: dist
preview:
runs-on: ubuntu-latest
needs: build
if: github.ref != 'refs/heads/master'
steps:
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: dist
- name: Deploy preview
uses: netlify/actions/cli@master
env:
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
with:
args: deploy --dir=.
deploy:
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/master'
steps:
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: dist
- name: Deploy site
uses: netlify/actions/cli@master
env:
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
with:
args: deploy --dir=. --prod