updates Release Notes #79
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 | |
on: | |
push: | |
branches: [master, google_analytics] | |
workflow_dispatch: | |
branches: [master] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: git config --global user.email 'github-actions@github.com' | |
- run: git config --global user.name 'github-actions' | |
- name: Set Node.js | |
uses: actions/setup-node@master | |
with: | |
node-version: 12.x | |
- name: Install dependencies | |
run: npm install | |
- name: Clean | |
run: npm run clean | |
- name: Build and Deploy | |
run: npm run deploy | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} |