Update logo to say .NET in it, instead of just being a palette swap #52
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: .NET | |
| on: | |
| push: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| env: | |
| ProjectName: RaspberryPiDotnetRepository | |
| TargetPlatform: win-x64 | |
| runs-on: windows-latest | |
| steps: | |
| - name: Clone | |
| uses: actions/checkout@v6 | |
| - name: Restore | |
| run: dotnet restore ${{ env.ProjectName }} --locked-mode | |
| - name: Build | |
| run: dotnet build ${{ env.ProjectName }} --no-restore --runtime ${{ env.TargetPlatform }} --configuration Release --no-self-contained | |
| - name: Publish | |
| run: dotnet publish ${{ env.ProjectName }} --no-build --configuration Release -p:PublishSingleFile=true --runtime ${{ env.TargetPlatform }} --self-contained false | |
| - name: Upload build artifacts | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: ${{ env.ProjectName }}.exe | |
| path: ${{ env.ProjectName }}/bin/Release/net10.0/${{ env.TargetPlatform }}/publish/*.exe | |
| if-no-files-found: error |