File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : " tagged-release"
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - " v*"
7
+ workflow_dispatch :
8
+
9
+ jobs :
10
+ tagged-release :
11
+ name : " Tagged Release"
12
+ runs-on : " ubuntu-latest"
13
+
14
+ steps :
15
+ - name : " 📥 Checkout Code"
16
+
17
+ with :
18
+ submodules : ' recursive'
19
+ fetch-depth : 0
20
+ - name : " ✅ Check bash syntax"
21
+ run : sudo make check
22
+ - name : " 🛠️ Install"
23
+ run : sudo make install
24
+ - name : " 🧹 Uninstall"
25
+ run : sudo make uninstall
26
+ - name : " 🛠️ build package"
27
+ run : sudo make dist
28
+ - uses : " marvinpinto/action-automatic-releases@latest"
29
+ with :
30
+ repo_token : " ${{ secrets.GITHUB_TOKEN }}"
31
+ prerelease : false
32
+ files : |
33
+ LICENSE.txt
34
+ *.7z
Original file line number Diff line number Diff line change 19
19
# //////////////////////////////////////////////////////////////
20
20
PROJECT_NAME := scripts
21
21
SHELL := bash
22
- VERSION := 1.0
22
+ VERSION := 1.0.0
23
23
24
24
all : check install
25
25
You can’t perform that action at this time.
0 commit comments