diff --git a/.github/workflows/versioning.yml b/.github/workflows/versioning.yml index 01039a30..c95b118a 100644 --- a/.github/workflows/versioning.yml +++ b/.github/workflows/versioning.yml @@ -1,14 +1,42 @@ -name: Keep the versions up-to-date +--- +######################### +######################### +## 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 + + ###################### + # Run the tag action # + ###################### - uses: Actions-R-Us/actions-tagger@latest with: publish_latest_tag: true