Skip to content

Create publish.yml

Create publish.yml #1

Workflow file for this run

on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Node Version to 18
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install Dependencies
uses: borales/actions-yarn@v4
with:
cmd: install
- name: Build Production Bundle
uses: borales/actions-yarn@v4
with:
cmd: build
- name: Push to Build Branch
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: gh-pages # The branch name where you want to push the assets
FOLDER: build # The directory where your assets are generated
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GitHub will automatically add this - you don't need to bother getting a token
MESSAGE: 'Build: ({sha}) {msg}' # The commit message