All checks were successful
Auto Changelog & Release / release (push) Successful in 7s
- Switches auto-changelog-release-action from v0 to main branch - Ensures the latest updates are used for the release workflow
20 lines
383 B
YAML
20 lines
383 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@main
|
|
with:
|
|
token: ${{ secrets.RELEASE_PUBLISH_TOKEN }}
|