Skip to content

chore: release v0.1.4-test.1 #1

chore: release v0.1.4-test.1

chore: release v0.1.4-test.1 #1

Workflow file for this run

# Release is automatically triggered when a new tag is pushed to the repository,
# this is done using `npm run bumpp`.
#
# This action will use `changelogithub` which generates a changelog using
# conventional commits, inside the GitHub release.
#
# See: https://github.com/antfu/changelogithub
name: Generate changelog
permissions:
contents: write
on:
push:
tags:
- "v*"
jobs:
changelog:

Check failure on line 20 in .github/workflows/changelog.yml

View workflow run for this annotation

GitHub Actions / Generate changelog

Invalid workflow file

The workflow is not valid. .github/workflows/changelog.yml (Line: 20, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 18.x
registry-url: "https://registry.npmjs.org"
- run: npx changelogithub
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}