feat: add page variable option type (#452) #240
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: Release | |
on: | |
push: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Use Node.js 14.18.2 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '14.18.2' | |
- run: npm install -g yarn | |
- run: yarn install --frozen-lockfile | |
- name: Run build | |
run: yarn build | |
- name: Release notes | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: yarn semantic-release |