superlint/.github/workflows/versioning.yml

51 lines
1.2 KiB
YAML
Raw Normal View History

2020-07-01 09:12:09 -04:00
---
#########################
#########################
## Version GitHub Tags ##
#########################
#########################
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 #
##########################
2022-02-21 10:17:34 -05:00
name: GitHub Tag Update
2020-07-01 09:12:09 -04:00
#####################################################
# Run the job when a release is published or edited #
#####################################################
on:
release:
types: [published, edited]
2020-07-01 09:12:09 -04:00
#################
# Start the job #
#################
permissions:
contents: read
jobs:
actions-tagger:
permissions:
contents: write # for Actions-R-Us/actions-tagger to create a release and add latest tag
runs-on: windows-latest
2021-11-15 11:25:36 -05:00
timeout-minutes: 60
steps:
2020-07-01 09:12:09 -04:00
#############################
# Check out the latest code #
#############################
- uses: actions/checkout@v3
2020-07-01 09:12:09 -04:00
######################
# Run the tag action #
######################
- uses: Actions-R-Us/actions-tagger@v2.0.2
2020-06-29 12:36:18 -04:00
with:
publish_latest_tag: true
env:
GITHUB_TOKEN: "${{secrets.GITHUB_TOKEN}}"