Skip to content

add Bali commands for releasing (#1198) #409

add Bali commands for releasing (#1198)

add Bali commands for releasing (#1198) #409

Workflow file for this run

## Deactivated deployment for now
name: GitHub Pages Publish
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
env:
CI: true
NODE_OPTIONS: --max-old-space-size=4096
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn run prepare-deployment
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: build-files
path: build
retention-days: 1
gh-deploy:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: build-files
path: build
- name: Deploy
uses: JamesIves/[email protected]
with:
folder: build
clean: true