Skip to content
This repository was archived by the owner on Mar 4, 2021. It is now read-only.

Commit 1418754

Browse files
authored
Add versioning action to automatically slide major versions with releases
1 parent 7d8fb6c commit 1418754

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/versioning.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Keep the versions up-to-date
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
actions-tagger:
9+
runs-on: windows-latest
10+
steps:
11+
- uses: Actions-R-Us/actions-tagger@latest
12+
with:
13+
publish_latest: true
14+
env:
15+
GITHUB_TOKEN: '${{secrets.GITHUB_TOKEN}}'

0 commit comments

Comments
 (0)