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 666f1d4 commit 7b991c2Copy full SHA for 7b991c2
.github/workflows/create_release_tag.py
@@ -0,0 +1,33 @@
1
+name: Auto Release Tag
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - 'src/index.json'
9
10
+jobs:
11
+ create-release:
12
+ runs-on: windows-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ with:
17
+ fetch-depth: 2
18
19
+ - name: Set up Python
20
+ uses: actions/setup-python@v5
21
22
+ python-version: '3.x'
23
24
+ - name: Install dependencies
25
+ run: |
26
+ python -m pip install --upgrade pip
27
+ pip install requests
28
29
+ - name: Create Release Tag
30
+ env:
31
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32
33
+ python ./create_release_tag.py
0 commit comments