Skip to content

Commit

Permalink
Try to get standalone build to compile properly
Browse files Browse the repository at this point in the history
  • Loading branch information
UnknownShadow200 committed Apr 28, 2024
1 parent 968c61c commit 9a578b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:

# publish standalone windows binaries
- name: Publish-win64
run: dotnet publish CLI/MCGalaxyCLI_dotnet6.csproj -r win-x64 --self-contained -p:ExtraDefineConstants=MCG_STANDALONE
run: dotnet publish CLI/MCGalaxyCLI_dotnet6.csproj -r win-x64 --self-contained -p:DefineConstants=MCG_STANDALONE

- uses: ./.github/actions/upload_build
if: ${{ always() && steps.compile.outcome == 'success' }}
Expand All @@ -125,7 +125,7 @@ jobs:

# publish standalone linux binaries
- name: Publish-linux64
run: dotnet publish CLI/MCGalaxyCLI_dotnet6.csproj -r linux-x64 --self-contained -p:ExtraDefineConstants=MCG_STANDALONE
run: dotnet publish CLI/MCGalaxyCLI_dotnet6.csproj -r linux-x64 --self-contained -p:DefineConstants=MCG_STANDALONE

- uses: ./.github/actions/upload_build
if: ${{ always() && steps.compile.outcome == 'success' }}
Expand All @@ -135,7 +135,7 @@ jobs:

# publish standalone macOS binaries
- name: Publish-mac64
run: dotnet publish CLI/MCGalaxyCLI_dotnet6.csproj -r osx-x64 --self-contained -p:ExtraDefineConstants=MCG_STANDALONE
run: dotnet publish CLI/MCGalaxyCLI_dotnet6.csproj -r osx-x64 --self-contained -p:DefineConstants=MCG_STANDALONE

- uses: ./.github/actions/upload_build
if: ${{ always() && steps.compile.outcome == 'success' }}
Expand Down

0 comments on commit 9a578b5

Please sign in to comment.