Skip to content

Commit

Permalink
Fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
rds1983 committed Oct 23, 2023
1 parent f8b5c62 commit 2f8e3f6
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/build-and-publish-release-without-nuget.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Build & Publish Release Without Nuget

on: [workflow_dispatch]

jobs:
BuildAndPublish:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Extract Version
shell: pwsh
run: |
$version = select-string -Path 'Directory.Build.Props' -Pattern '<VersionPrefix>(.*)<\/VersionPrefix>' -AllMatches | % { $_.Matches } | % { $_.Groups[1].Value }
echo "VERSION=$version"
echo "VERSION=$version" >> $Env:GITHUB_ENV
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Build Myra.MonoGame
run: dotnet build build\Myra.MonoGame.sln --configuration Release
- name: Build Myra.Stride
run: dotnet build build\Myra.Stride.sln --configuration Release
- name: Build Myra.PlatformAgnostic
run: dotnet build build\Myra.PlatformAgnostic.sln --configuration Release
- name: Test
run: dotnet test build\Myra.MonoGame.sln --verbosity normal
- name: Build Binary Distribution
shell: pwsh
run: ./buildBinaryDistribution.ps1 ${{env.VERSION}}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ env.VERSION }}
release_name: ${{ env.VERSION }}
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./Myra.${{ env.VERSION }}.zip
asset_name: Myra.${{ env.VERSION }}.zip
asset_content_type: application/zip
3 changes: 3 additions & 0 deletions buildBinaryDistribution.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ Copy-Item -Path "src\MyraPad\bin\Release\net6.0\FontStashSharp.*" -Destination "
Copy-Item -Path "src\MyraPad\bin\Release\net6.0\StbImageSharp.dll" -Destination "ZipPackage"
Copy-Item -Path "src\MyraPad\bin\Release\net6.0\StbTrueTypeSharp.dll" -Destination "ZipPackage"
Copy-Item -Path "src\MyraPad\bin\Release\net6.0\Cyotek.Drawing.BitmapFont.dll" -Destination "ZipPackage"
Copy-Item -Path "src\MyraPad\bin\Release\net6.0\AssetManagementBase.dll" -Destination "ZipPackage"
Copy-Item -Path "src\MyraPad\bin\Release\net6.0\DdsKtxXna.dll" -Destination "ZipPackage"
Copy-Item -Path "src\MyraPad\bin\Release\net6.0\XNAssets.MonoGame.dll" -Destination "ZipPackage"
Copy-Item -Path "src\MyraPad\bin\Release\net6.0\info.lundin.math.dll" -Destination "ZipPackage"
Copy-Item -Path "src\MyraPad\bin\Release\net6.0\MonoGame.Framework.dll" -Destination "ZipPackage"
Copy-Item -Path "src\MyraPad\bin\Release\net6.0\runtimes" -Destination "ZipPackage" -Recurse
Expand Down

0 comments on commit 2f8e3f6

Please sign in to comment.