Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/WillR27/Pagoog into main
Browse files Browse the repository at this point in the history
  • Loading branch information
WillR27 committed Mar 14, 2021
2 parents 85bd02f + c8c1c93 commit 25c15da
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/Release-Major.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

# Build on Windows for x64 machines
jobs:
Dist-Windows-x64:
Windows-x64:
runs-on: windows-latest

steps:
Expand All @@ -34,14 +34,16 @@ jobs:
with:
auto_increment_type: major
tag_schema: semantic
release_name: Windows-x64
draft: false
prerelease: true

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ github.workspace }}\Source\Builds\Bin\Dist-windows-x86_64\Pagoog\Pagoog.exe
file: ${{ github.workspace }}\Source\Build\Builds\Bin\Dist-windows-x64\Pagoog\Pagoog.exe
asset_name: Pagoog.exe
tag: ${{ steps.create.outputs.current_tag }}
release_name: Windows-x64

6 changes: 4 additions & 2 deletions .github/workflows/Release-Minor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

# Build on Windows for x64 machines
jobs:
Dist-Windows-x64:
Windows-x64:
runs-on: windows-latest

steps:
Expand All @@ -34,14 +34,16 @@ jobs:
with:
auto_increment_type: minor
tag_schema: semantic
release_name: Windows-x64
draft: false
prerelease: true

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ github.workspace }}\Source\Builds\Bin\Dist-windows-x86_64\Pagoog\Pagoog.exe
file: ${{ github.workspace }}\Source\Build\Builds\Bin\Dist-windows-x64\Pagoog\Pagoog.exe
asset_name: Pagoog.exe
tag: ${{ steps.create.outputs.current_tag }}
release_name: Windows-x64

6 changes: 4 additions & 2 deletions .github/workflows/Release-Patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

# Build on Windows for x64 machines
jobs:
Dist-Windows-x64:
Windows-x64:
runs-on: windows-latest

steps:
Expand All @@ -34,14 +34,16 @@ jobs:
with:
auto_increment_type: patch
tag_schema: semantic
release_name: Windows-x64
draft: false
prerelease: true

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ github.workspace }}\Source\Builds\Bin\Dist-windows-x86_64\Pagoog\Pagoog.exe
file: ${{ github.workspace }}\Source\Build\Builds\Bin\Dist-windows-x86_64\Pagoog\Pagoog.exe
asset_name: Pagoog.exe
tag: ${{ steps.create.outputs.current_tag }}
release_name: Windows-x64

0 comments on commit 25c15da

Please sign in to comment.