hide when raked is null #66
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 Github Page | |
on: | |
push: | |
branches: [develop] | |
repository_dispatch: | |
types: | |
- webhook-build | |
jobs: | |
pipeline: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "12" | |
- name: Install dependencies | |
run: npm config set //npm.pkg.github.com/:_authToken ${{ secrets.GITHUB_TOKEN }} && npm install | |
- name: Build project | |
run: npm run generate | |
env: | |
BASE_URL: / | |
SITE_URL: https://wevisdemo.github.io/bkk-followup/ | |
- name: Deploy to Github Page | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./out |