Skip to content

Merge branch 'main' of https://github.com/karmacarrot/minotaur #45

Merge branch 'main' of https://github.com/karmacarrot/minotaur

Merge branch 'main' of https://github.com/karmacarrot/minotaur #45

Workflow file for this run

name: Release minotaur
on:
push:
branches:
- main
jobs:
release:
permissions:
contents: write
issues: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 21.x
- run: npm ci
working-directory: packages/minotaur-chess-engine/src
- run: npm run build
working-directory: packages/minotaur-chess-engine/src
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
working-directory: packages/minotaur-chess-engine/src