Skip to content

move to one build action #104

move to one build action

move to one build action #104

Workflow file for this run

name: Build And Release
on: [push]
concurrency:
group: release-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: 'bash'
env:
GH_TOKEN: ${{ secrets.github_token }}
jobs:
build-executables:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: install dependencies
run: yarn install
- name: build
env:
MODE: 'production'
NEXT_PUBLIC_TBA_KEY: ${{ secrets.NEXT_PUBLIC_TBA_KEY }}
run: yarn build