Skip to content

Commit

Permalink
Sync-up packaging between GitHub action and build task
Browse files Browse the repository at this point in the history
  • Loading branch information
psyGamer committed Mar 1, 2024
1 parent 4144427 commit 3eceb54
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
3 changes: 1 addition & 2 deletions CelesteMod/.github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ jobs:
name: CelesteMod
path: |
everest.yaml
bin/CelesteMod.dll
bin/CelesteMod.pdb
bin
#if Samples
Ahorn/**/*
Audio/**/*
Expand Down
9 changes: 5 additions & 4 deletions CelesteMod/Source/CelesteMod-core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,13 @@

<Target Name="PackageMod" AfterTargets="CopyFiles" Condition="'$(Configuration)' == 'Release'">
<ItemGroup>
<FilesToPackage Include="..\Ahorn\**\*.*" />
<FilesToPackage Include="..\Loenn\**\*.*" />
<FilesToPackage Include="..\everest.yaml" />
<FilesToPackage Include="..\bin\**\*.*" />
<FilesToPackage Include="..\Audio\**\*.*" />
<FilesToPackage Include="..\Dialog\**\*.*" />
<FilesToPackage Include="..\Graphics\**\*.*" />
<FilesToPackage Include="..\bin\**\*.*" />
<FilesToPackage Include="..\everest.yaml" />
<FilesToPackage Include="..\Ahorn\**\*.*" />
<FilesToPackage Include="..\Loenn\**\*.*" />
</ItemGroup>
<PackageMod Files="@(FilesToPackage)" OutputPath="..\CelesteMod.zip" />
</Target>
Expand Down

0 comments on commit 3eceb54

Please sign in to comment.