File tree Expand file tree Collapse file tree 2 files changed +2
-13
lines changed Expand file tree Collapse file tree 2 files changed +2
-13
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,6 @@ name: "Create Release"
1111on :
1212 workflow_dispatch :
1313 inputs :
14- prerelease :
15- description : ' Is this a prerelease?'
16- required : true
17- type : boolean
18- default : true
1914 source-feed :
2015 description : ' Which source feed to publish to?'
2116 required : true
@@ -29,15 +24,12 @@ jobs:
2924 build :
3025 name : " Build MonoGame.Extended"
3126 runs-on : ubuntu-latest
32- env :
33- IS_PRERELEASE : ${{ inputs.prerelease || '' }}
34- BUILD_NUMBER : ${{ inputs.prerelease && github.run_number || '' }}
3527
3628 steps :
3729 - name : Clone Repository
3830 uses : actions/checkout@v4
3931 with :
40- ref : ${{ inputs.prerelease && ' develop' || 'main' }}
32+ ref : develop
4133
4234 - name : Setup Dotnet
4335 uses : actions/setup-dotnet@v4
Original file line number Diff line number Diff line change 77 </PropertyGroup >
88
99 <PropertyGroup >
10- <MonoGameExtendedVersion >4.0.4</MonoGameExtendedVersion >
11- <IsPrerelease Condition =" '$(IS_PRERELEASE)' != ''" >-prerelease</IsPrerelease >
12- <BuildNumber Condition =" '$(BUILD_NUMBER)' != ''" >.$(BUILD_NUMBER)</BuildNumber >
13- <Version >$(MonoGameExtendedVersion)$(IsPrerelease)$(BuildNumber)</Version >
10+ <Version >4.0.4</Version >
1411 </PropertyGroup >
1512
1613 <PropertyGroup >
You can’t perform that action at this time.
0 commit comments