-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ADMSK\AVROGAL1
committed
Feb 20, 2021
1 parent
9bf7887
commit 55a98d8
Showing
3 changed files
with
62 additions
and
19 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
######################### | ||
######################### | ||
## 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/[email protected] | ||
|
||
###################### | ||
# Run the tag action # | ||
###################### | ||
- uses: Actions-R-Us/[email protected] | ||
with: | ||
publish_latest_tag: true | ||
env: | ||
GITHUB_TOKEN: "${{secrets.GITHUB_TOKEN}}" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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