Skip to content

Tag and Release

Tag and Release #38

name: Tag and Release
on:
workflow_run:
workflows: ["Path tests"]
types:
- completed
branches:
- main
workflow_dispatch: # Added to enable manual trigger via GitHub UI
jobs:
release-on-push:
runs-on: ubuntu-22.04
env:
GITHUB_TOKEN: ${{ github.token }}
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: rymndhng/release-on-push-action@master
with:
bump_version_scheme: patch
release_body: ":rocket: Release Notes !:fireworks: "
use_github_release_notes: true