We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 462422f commit f3f294eCopy full SHA for f3f294e
.github/workflows/tag.yml
@@ -0,0 +1,25 @@
1
+name: Auto Tag my Application
2
+on:
3
+ workflow_dispatch:
4
+
5
+jobs:
6
+ style:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
11
+ - uses: dprint/check@v2.2
12
13
+ tag:
14
15
16
+ - uses: actions/checkout@v2
17
+ with:
18
+ fetch-depth: '0'
19
+ - name: Produce github tag
20
+ uses: anothrNick/github-tag-action@1.71.0
21
+ env:
22
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23
+ BRANCH_HISTORY: last
24
+ WITH_V: true
25
+ PRERELEASE: true
0 commit comments