Skip to content

Commit

Permalink
Bump version to v0.7.0
Browse files Browse the repository at this point in the history
Update Actions scripts.
  • Loading branch information
tindy2013 committed Sep 20, 2021
1 parent 94ee747 commit 5aaa0f2
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
45 changes: 45 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ jobs:
with:
name: subconverter_linux32
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:
name: Linux x86_64 Build
Expand All @@ -27,6 +36,15 @@ jobs:
with:
name: subconverter_linux64
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:
name: macOS Build
Expand All @@ -40,6 +58,15 @@ jobs:
with:
name: subconverter_darwin64
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:
name: Windows x86_64 Build
Expand All @@ -65,6 +92,15 @@ jobs:
with:
name: subconverter_win64
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:
name: Windows x86 Build
Expand All @@ -90,3 +126,12 @@ jobs:
with:
name: subconverter_win32
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
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#ifndef VERSION_H_INCLUDED
#define VERSION_H_INCLUDED

#define VERSION "v0.6.4"
#define VERSION "v0.7.0"

#endif // VERSION_H_INCLUDED

0 comments on commit 5aaa0f2

Please sign in to comment.