latest-tag #2
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: latest-tag | |
# Makes a 'latest' tag that points to the commit of the latest release to allow a downloadable URL | |
on: | |
workflow_dispatch: | |
release: | |
types: [published] | |
jobs: | |
tag-latest: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Latest tag | |
uses: EndBug/[email protected] | |