Skip to content

Commit f3f294e

Browse files
committed
feat: tag github action to make it easy deployment
1 parent 462422f commit f3f294e

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/tag.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
runs-on: ubuntu-latest
15+
steps:
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

Comments
 (0)