Skip to content

pre-release version 3.0 #5

pre-release version 3.0

pre-release version 3.0 #5

Workflow file for this run

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