pre-release version 3.0 #4
Workflow file for this run
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: PreRelease Branch Workflow | |
on: | |
push: | |
tags: | |
- pre-v* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
cache: "yarn" | |
- name: Installing dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build for production | |
run: yarn build | |
- name: Build release branch | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
disable_nojekyll: true | |
publish_branch: pre-release | |
publish_dir: ./build | |
- name: Build release branch | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
disable_nojekyll: true | |
publish_branch: nightly | |
publish_dir: ./build |