2020-07-01 09:12:09 -04:00
|
|
|
---
|
|
|
|
#########################
|
|
|
|
#########################
|
|
|
|
## Version GitHub Tags ##
|
|
|
|
#########################
|
|
|
|
#########################
|
2020-06-29 11:39:09 -04:00
|
|
|
|
2020-07-01 09:12:09 -04:00
|
|
|
#
|
|
|
|
# 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 #
|
|
|
|
#####################################################
|
2020-06-29 11:39:09 -04:00
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [published, edited]
|
|
|
|
|
2020-07-01 09:12:09 -04:00
|
|
|
#################
|
|
|
|
# Start the job #
|
|
|
|
#################
|
2020-06-29 11:39:09 -04:00
|
|
|
jobs:
|
|
|
|
actions-tagger:
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
2020-07-01 09:12:09 -04:00
|
|
|
#############################
|
|
|
|
# Check out the latest code #
|
|
|
|
#############################
|
2020-08-10 01:38:32 -04:00
|
|
|
- uses: actions/checkout@v2.3.2
|
2020-07-01 09:12:09 -04:00
|
|
|
|
|
|
|
######################
|
|
|
|
# Run the tag action #
|
|
|
|
######################
|
2020-07-06 09:12:47 -04:00
|
|
|
- uses: Actions-R-Us/actions-tagger@v2.0.1
|
2020-06-29 12:36:18 -04:00
|
|
|
with:
|
|
|
|
publish_latest_tag: true
|
2020-06-29 11:39:09 -04:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: "${{secrets.GITHUB_TOKEN}}"
|