-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 1.14.0
- Loading branch information
Showing
32 changed files
with
1,136 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,9 @@ jobs: | |
deploy: | ||
permissions: write-all | ||
runs-on: windows-latest | ||
outputs: | ||
version: ${{ steps.release.outputs.version }} | ||
|
||
steps: | ||
- name: Checkout repository | ||
id: checkout | ||
|
@@ -16,8 +19,20 @@ jobs: | |
id: setup | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: '6.x' | ||
dotnet-version: '8.x' | ||
|
||
- name: Build .NET Solution | ||
- name: Build .NET solution | ||
id: build | ||
run: dotnet build gamevault.sln --configuration Release | ||
run: | | ||
dotnet build gamevault.sln --configuration Release | ||
7z a GameVault.zip gamevault/bin | ||
- name: Upload binaries to release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: GameVault.zip | ||
asset_name: GameVault.zip | ||
tag: unstable | ||
overwrite: true | ||
prerelease: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
id: setup | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: '6.x' | ||
dotnet-version: '8.x' | ||
|
||
- name: Build .NET solution | ||
id: build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.