v1.0.0 #1
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: action-release-tags | |
on: | |
release: | |
types: [released, edited] | |
jobs: | |
action-tagger: | |
name: action-tagger | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Disabling shallow clone ensures all commits | |
# and tags are available at checkout. | |
fetch-depth: 0 | |
- name: Tag Release | |
id: action-tagger | |
uses: stevenjdh/action-tagger@v1 | |
with: | |
set-latest-tag: true |