Skip to content

Disable npm token for debugging #3

Disable npm token for debugging

Disable npm token for debugging #3

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
changelog:
name: Changelog PR or Release
runs-on: ubuntu-latest
steps:

Check failure on line 13 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20
- run: pnpm i
- run: pnpm run build
- name: Create Release Pull Request or Publish
id: changesets
uses: changesets/action@v1
with:
version: pnpm run version
publish: pnpm exec changeset publish
commit: "[ci] release"
title: "[ci] release"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# npm token temporarily disabled for debugging
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}