Skip to content

publish with github secret #18

publish with github secret

publish with github secret #18

Workflow file for this run

name: Release a New Version
on: [push]
jobs:
release:
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: Release
run: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NEXT_PUBLIC_TBA_KEY: ${{ secrets.NEXT_PUBLIC_TBA_KEY }}