Files
rssbridge/.gitea/workflows/tag.yaml
T
renovate 66ad6462b0
PR Checks / hadolint (pull_request) Successful in 7s
chore(deps): update actions/checkout action to v7
2026-06-18 15:34:26 +00:00

22 lines
537 B
YAML

name: Tag Release
on:
push:
branches: [master]
jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
with:
fetch-depth: 0
- name: Bump version and push tag
uses: anothrNick/github-tag-action@4ed44965e0db8dab2b466a16da04aec3cc312fd8 # v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BUMP: patch
RELEASE_BRANCHES: master
WITH_V: true
GIT_API_TAGGING: false