This repository was archived by the owner on Jan 4, 2026. It is now read-only.
🍿 Fix Regal again #38
Workflow file for this run
This file contains hidden or 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: Linux-x64 Build and Publish | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Clone repository | |
| uses: actions/checkout@v2 | |
| - name: Restore dependencies | |
| run: dotnet restore src/Theorem.sln | |
| - name: Build | |
| run: dotnet build --no-restore src/Theorem.sln | |
| - name: Publish | |
| run: dotnet publish -c Release -r linux-x64 --self-contained=true -p:PublishReadyToRun=true -o publish/Theorem src/Theorem/Theorem.csproj | |
| - name: Upload Artifact | |
| uses: actions/upload-artifact@v2 | |
| with: | |
| name: Theorem | |
| path: publish/Theorem | |
| if-no-files-found: error |