Skip to content
This repository was archived by the owner on Jun 3, 2026. It is now read-only.

release

release #77

Workflow file for this run

name: Tag Release of tools
on:
repository_dispatch:
types: release
jobs:
tag-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create a GitHub release
uses: ncipollo/release-action@v1
with:
skipIfReleaseExists: true
tag: ${{ github.event.client_payload.tag }}
commit: main
name: Release ${{ github.event.client_payload.tag }}
generateReleaseNotes: true
prerelease: ${{ contains(github.event.client_payload.tag, '-rc') }}
token: ${{ secrets.DISPATCH_TOKEN }}