Skip to content

chore: release v0.1.0-beta.1 #8

chore: release v0.1.0-beta.1

chore: release v0.1.0-beta.1 #8

Workflow file for this run

name: release
permissions:
contents: write
on:
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://registry.npmjs.org
cache: pnpm
- run: pnpm install
- run: pnpm test
- run:
- npm ci

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

View workflow run for this annotation

GitHub Actions / release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 35, Col: 11): A sequence was not expected
- npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH__TOKEN }}
- run: npx changelogithub
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}