- Updates the auto-changelog-release-action to version 0.3.0 - Ensures compatibility and stability by pinning the action version
20 lines
385 B
YAML
20 lines
385 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.3.0
|
|
with:
|
|
token: ${{ secrets.RELEASE_PUBLISH_TOKEN }}
|