Skip to content

ci: disable npm for now #68

ci: disable npm for now

ci: disable npm for now #68

Workflow file for this run

name: publish
on:
push:
branches:
- main
- beta
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: "0"
ssh-key: ${{ secrets.DEPLOY_KEY }}
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install dependencies
run: yarn
- name: Test
run: yarn test
- name: Release
env:
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
run: yarn semantic-release --repositoryUrl $(git remote get-url origin) --debug