Started using more efficient methods of calculating time in performan… #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cross-Platform Build and Release | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
platform: [linux-x64, win-x64, osx-x64, osx-arm64] | |
include: | |
- net_version: "net8.0" | |
steps: | |
# Checkout the repository | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# Setup .NET SDK | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '8.x' | |
# Create directories for the build outputs | |
- name: Create release directories | |
run: mkdir -p bin/${{ matrix.platform }} | |
# Publish ThirtyDollarConverter.GUI project | |
- name: Publish ThirtyDollarConverter.GUI | |
run: | | |
dotnet publish ./ThirtyDollarConverter.GUI/ThirtyDollarConverter.GUI.csproj \ | |
-c Release -r ${{ matrix.platform }} \ | |
--self-contained true \ | |
-p:PublishSingleFile=true \ | |
-p:IncludeNativeLibrariesForSelfExtract=true \ | |
-o ./bin/${{ matrix.platform }} | |
# Publish ThirtyDollarVisualizer project | |
- name: Publish ThirtyDollarVisualizer | |
run: | | |
dotnet publish ./ThirtyDollarVisualizer/ThirtyDollarVisualizer.csproj \ | |
-c Release -r ${{ matrix.platform }} \ | |
--self-contained true \ | |
-p:PublishSingleFile=true \ | |
-p:IncludeNativeLibrariesForSelfExtract=true \ | |
-o ./bin/${{ matrix.platform }} | |
# Clean up unnecessary files before zipping | |
- name: Clean up build artifacts | |
run: | | |
cd "./bin/${{ matrix.platform }}" | |
rm -rf ./*.dll ./*.dylib ./*.so ./*.pdb ./runtimes | |
# Upload the zipped release assets as artifacts | |
- name: Upload release artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.platform }}-release | |
path: bin/${{ matrix.platform }} |