-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0971a2f
commit b5e9890
Showing
1 changed file
with
68 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: Publish compiled binaries in release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
release-tsclient: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
ref: tsclient | ||
|
||
- name: Setup .NET Core SDK | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: '7.x.x' | ||
|
||
- name: Build Editor | ||
run: ./build.ps1 | ||
shell: pwsh | ||
|
||
- name: Pack compiled binaries | ||
run: 7z a -tzip WorldAlteringEditor_TSClient.zip "D:\a\TSMapEditor\TSMapEditor\src\TSMapEditor\bin\Release\net7.0-windows\*.*" | ||
|
||
- name: Upload compiled binaries | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: 'WorldAlteringEditor_TSClient.zip' | ||
asset_name: WorldAlteringEditor_TSClient.zip | ||
asset_content_type: application/zip | ||
|
||
|
||
release-yr: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
ref: yr | ||
|
||
- name: Setup .NET Core SDK | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: '7.x.x' | ||
|
||
- name: Build Editor | ||
run: ./build.ps1 | ||
shell: pwsh | ||
|
||
- name: Pack compiled binaries | ||
run: 7z a -tzip WorldAlteringEditor_YurisRevenge.zip "D:\a\TSMapEditor\TSMapEditor\src\TSMapEditor\bin\Release\net7.0-windows\*.*" | ||
|
||
- name: Upload compiled binaries | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: 'WorldAlteringEditor_YurisRevenge.zip' | ||
asset_name: WorldAlteringEditor_YurisRevenge.zip | ||
asset_content_type: application/zip | ||
|