Skip to content

🤖 [Actions] Convert all labeler entries to an array (#52) #37

🤖 [Actions] Convert all labeler entries to an array (#52)

🤖 [Actions] Convert all labeler entries to an array (#52) #37

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node 20.x to install with private scope
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Create PR or publish to NPM
id: changesets
uses: changesets/action@v1
with:
publish: npm run release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}