Some checks failed
Auto Changelog & Release / release (push) Failing after 1s
- Updates the action version from `main` to `v0` for better stability. - Ensures consistent behavior during the release process.
20 lines
381 B
YAML
20 lines
381 B
YAML
name: Auto Changelog & Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- "**"
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Release
|
|
uses: https://git.0xmax42.io/actions/auto-changelog-release-action@v0
|
|
with:
|
|
token: ${{ secrets.RELEASE_PUBLISH_TOKEN }}
|