Files
auto-changelog-release-action/.gitea/workflows/release.yml
Max P. fcb80ef5ce
All checks were successful
Auto Changelog & Release / release (push) Successful in 6s
feat(workflows): add token input for release action
- Adds `token` input to the release workflow to use a secret token.
- Enhances automation by enabling authenticated release publishing.
2025-06-14 18:57:59 +02:00

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 }}