Skip to content

Commit 5aaa0f2

Browse files
committed
Bump version to v0.7.0
Update Actions scripts.
1 parent 94ee747 commit 5aaa0f2

File tree

2 files changed

+46
-1
lines changed

2 files changed

+46
-1
lines changed

.github/workflows/build.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@ jobs:
1414
with:
1515
name: subconverter_linux32
1616
path: subconverter/
17+
- name: Package Release
18+
if: startsWith(github.ref, 'refs/tags/')
19+
run: tar czf subconverter_linux32.tar.gz subconverter
20+
- name: Draft Release
21+
uses: softprops/action-gh-release@v1
22+
if: startsWith(github.ref, 'refs/tags/')
23+
with:
24+
files: subconverter_linux32.tar.gz
25+
draft: true
1726

1827
linux64_build:
1928
name: Linux x86_64 Build
@@ -27,6 +36,15 @@ jobs:
2736
with:
2837
name: subconverter_linux64
2938
path: subconverter/
39+
- name: Package Release
40+
if: startsWith(github.ref, 'refs/tags/')
41+
run: tar czf subconverter_linux64.tar.gz subconverter
42+
- name: Draft Release
43+
uses: softprops/action-gh-release@v1
44+
if: startsWith(github.ref, 'refs/tags/')
45+
with:
46+
files: subconverter_linux64.tar.gz
47+
draft: true
3048

3149
macos_build:
3250
name: macOS Build
@@ -40,6 +58,15 @@ jobs:
4058
with:
4159
name: subconverter_darwin64
4260
path: subconverter/
61+
- name: Package Release
62+
if: startsWith(github.ref, 'refs/tags/')
63+
run: tar czf subconverter_darwin64.tar.gz subconverter
64+
- name: Draft Release
65+
uses: softprops/action-gh-release@v1
66+
if: startsWith(github.ref, 'refs/tags/')
67+
with:
68+
files: subconverter_darwin64.tar.gz
69+
draft: true
4370

4471
windows64_build:
4572
name: Windows x86_64 Build
@@ -65,6 +92,15 @@ jobs:
6592
with:
6693
name: subconverter_win64
6794
path: subconverter/
95+
- name: Package Release
96+
if: startsWith(github.ref, 'refs/tags/')
97+
run: 7z a subconverter_win64.7z subconverter/
98+
- name: Draft Release
99+
uses: softprops/action-gh-release@v1
100+
if: startsWith(github.ref, 'refs/tags/')
101+
with:
102+
files: subconverter_win64.7z
103+
draft: true
68104

69105
windows32_build:
70106
name: Windows x86 Build
@@ -90,3 +126,12 @@ jobs:
90126
with:
91127
name: subconverter_win32
92128
path: subconverter/
129+
- name: Package Release
130+
if: startsWith(github.ref, 'refs/tags/')
131+
run: 7z a subconverter_win32.7z subconverter/
132+
- name: Draft Release
133+
uses: softprops/action-gh-release@v1
134+
if: startsWith(github.ref, 'refs/tags/')
135+
with:
136+
files: subconverter_win32.7z
137+
draft: true

src/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#ifndef VERSION_H_INCLUDED
22
#define VERSION_H_INCLUDED
33

4-
#define VERSION "v0.6.4"
4+
#define VERSION "v0.7.0"
55

66
#endif // VERSION_H_INCLUDED

0 commit comments

Comments
 (0)