mirror of
https://github.com/MetaCubeX/subconverter.git
synced 2025-11-04 18:19:42 +08:00
Bump version to v0.7.0
Update Actions scripts.
This commit is contained in:
parent
94ee747649
commit
5aaa0f2027
45
.github/workflows/build.yml
vendored
45
.github/workflows/build.yml
vendored
@ -14,6 +14,15 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: subconverter_linux32
|
name: subconverter_linux32
|
||||||
path: subconverter/
|
path: subconverter/
|
||||||
|
- name: Package Release
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
run: tar czf subconverter_linux32.tar.gz subconverter
|
||||||
|
- name: Draft Release
|
||||||
|
uses: softprops/action-gh-release@v1
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
with:
|
||||||
|
files: subconverter_linux32.tar.gz
|
||||||
|
draft: true
|
||||||
|
|
||||||
linux64_build:
|
linux64_build:
|
||||||
name: Linux x86_64 Build
|
name: Linux x86_64 Build
|
||||||
@ -27,6 +36,15 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: subconverter_linux64
|
name: subconverter_linux64
|
||||||
path: subconverter/
|
path: subconverter/
|
||||||
|
- name: Package Release
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
run: tar czf subconverter_linux64.tar.gz subconverter
|
||||||
|
- name: Draft Release
|
||||||
|
uses: softprops/action-gh-release@v1
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
with:
|
||||||
|
files: subconverter_linux64.tar.gz
|
||||||
|
draft: true
|
||||||
|
|
||||||
macos_build:
|
macos_build:
|
||||||
name: macOS Build
|
name: macOS Build
|
||||||
@ -40,6 +58,15 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: subconverter_darwin64
|
name: subconverter_darwin64
|
||||||
path: subconverter/
|
path: subconverter/
|
||||||
|
- name: Package Release
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
run: tar czf subconverter_darwin64.tar.gz subconverter
|
||||||
|
- name: Draft Release
|
||||||
|
uses: softprops/action-gh-release@v1
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
with:
|
||||||
|
files: subconverter_darwin64.tar.gz
|
||||||
|
draft: true
|
||||||
|
|
||||||
windows64_build:
|
windows64_build:
|
||||||
name: Windows x86_64 Build
|
name: Windows x86_64 Build
|
||||||
@ -65,6 +92,15 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: subconverter_win64
|
name: subconverter_win64
|
||||||
path: subconverter/
|
path: subconverter/
|
||||||
|
- name: Package Release
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
run: 7z a subconverter_win64.7z subconverter/
|
||||||
|
- name: Draft Release
|
||||||
|
uses: softprops/action-gh-release@v1
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
with:
|
||||||
|
files: subconverter_win64.7z
|
||||||
|
draft: true
|
||||||
|
|
||||||
windows32_build:
|
windows32_build:
|
||||||
name: Windows x86 Build
|
name: Windows x86 Build
|
||||||
@ -90,3 +126,12 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: subconverter_win32
|
name: subconverter_win32
|
||||||
path: subconverter/
|
path: subconverter/
|
||||||
|
- name: Package Release
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
run: 7z a subconverter_win32.7z subconverter/
|
||||||
|
- name: Draft Release
|
||||||
|
uses: softprops/action-gh-release@v1
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
with:
|
||||||
|
files: subconverter_win32.7z
|
||||||
|
draft: true
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
#ifndef VERSION_H_INCLUDED
|
#ifndef VERSION_H_INCLUDED
|
||||||
#define VERSION_H_INCLUDED
|
#define VERSION_H_INCLUDED
|
||||||
|
|
||||||
#define VERSION "v0.6.4"
|
#define VERSION "v0.7.0"
|
||||||
|
|
||||||
#endif // VERSION_H_INCLUDED
|
#endif // VERSION_H_INCLUDED
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user