Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
albertomn86 committed Dec 8, 2023
1 parent 546166f commit 92391c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Restore dependencies
run: dotnet restore
- name: Publish
run: dotnet publish TLEGenerator -c Release --no-restore
run: dotnet publish TLEGenerator -c Release --no-restore --output osx-x64
- uses: actions/upload-artifact@v3
with:
name: tlegenerator-osx-x64
Expand Down
5 changes: 5 additions & 0 deletions TLEGenerator/TLEGenerator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
<AssemblyName>tlegenerator</AssemblyName>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DebugSymbols>False</DebugSymbols>
<DebugType>None</DebugType>
</PropertyGroup>

<ItemGroup>
<Content Include="../config.json" CopyToOutputDirectory="Always" />
<Content Include="../satellites.json" CopyToOutputDirectory="Always" />
Expand Down

0 comments on commit 92391c6

Please sign in to comment.