v0.2.1 #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: 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: Check out pipeline code | |
uses: actions/[email protected] | |
- name: Latest tag | |
uses: EndBug/[email protected] |