Skip to content

Commit

Permalink
Remote trimming for CI parameters because not anymore supported
Browse files Browse the repository at this point in the history
  • Loading branch information
uuksu committed Dec 30, 2024
1 parent 8c46831 commit f08547a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ jobs:
run: dotnet build --configuration $Env:BUILD_CONFIG --no-restore

- name: Publish Linux CLI
run: dotnet publish $Env:CLI_PROJECT --configuration $Env:BUILD_CONFIG -r linux-x64 -p:PublishSingleFile=true -p:PublishTrimmed=true -p:TrimMode=Link --self-contained true --output $Env:GITHUB_WORKSPACE
run: dotnet publish $Env:CLI_PROJECT --configuration $Env:BUILD_CONFIG -r linux-x64 -p:PublishSingleFile=true --self-contained true --output $Env:GITHUB_WORKSPACE

- name: Publish Windows CLI
run: dotnet publish $Env:CLI_PROJECT --configuration $Env:BUILD_CONFIG -r win-x64 -p:PublishSingleFile=true -p:PublishTrimmed=true -p:TrimMode=Link --self-contained true --output $Env:GITHUB_WORKSPACE
run: dotnet publish $Env:CLI_PROJECT --configuration $Env:BUILD_CONFIG -r win-x64 -p:PublishSingleFile=true --self-contained true --output $Env:GITHUB_WORKSPACE

- uses: ncipollo/[email protected]
with:
Expand Down
4 changes: 3 additions & 1 deletion RPGMakerDecrypter.Cli/RPGMakerDecrypter.Cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@
<AssemblyName>RPGMakerDecrypter-cli</AssemblyName>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<PublishTrimmed>true</PublishTrimmed>
<TrimMode>full</TrimMode>
</PropertyGroup>
<PropertyGroup>
<PropertyGroup>§
<ApplicationIcon>icon_256x256_cli.ico</ApplicationIcon>
<Title>RPG Maker Decrypter</Title>
<AssemblyTitle>RPG Maker Decrypter</AssemblyTitle>
Expand Down

0 comments on commit f08547a

Please sign in to comment.