superlint/.github/workflows/versioning.yml
Eric Nemchik 56609617a9 Use full version numbers for GHA
Dependabot will update these automatically
2020-07-02 20:16:27 -05:00

44 lines
1.1 KiB
YAML

---
#########################
#########################
## Version GitHub Tags ##
#########################
#########################
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
##########################
# Name of the action job #
##########################
name: Keep GitHub tag versions up-to-date
#####################################################
# Run the job when a release is published or edited #
#####################################################
on:
release:
types: [published, edited]
#################
# Start the job #
#################
jobs:
actions-tagger:
runs-on: windows-latest
steps:
#############################
# Check out the latest code #
#############################
- uses: actions/checkout@v2.3.1
######################
# Run the tag action #
######################
- uses: Actions-R-Us/actions-tagger@v2.0.0
with:
publish_latest_tag: true
env:
GITHUB_TOKEN: "${{secrets.GITHUB_TOKEN}}"