Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release new action version | |
on: | |
release: | |
types: [released] | |
workflow_dispatch: | |
inputs: | |
TAG_NAME: | |
description: 'Tag name that the major tag will point to' | |
required: true | |
env: | |
TAG_NAME: ${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }} | |
jobs: | |
update_tag: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
source-tag: ${{ env.TAG_NAME }} |