Merge pull request #572 from christianhelle/source-generator-error-re… #38
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: MSBuild Tasks | |
on: | |
workflow_dispatch: | |
push: | |
paths-ignore: | |
- '**/*' | |
- '!.github/workflows/msbuild.yml' | |
- '!src/**/*.csproj' | |
- '!src/**/*.cs' | |
branches: | |
- 'main' | |
pull_request: | |
paths-ignore: | |
- '**/*' | |
- '!.github/workflows/msbuild.yml' | |
- '!src/**/*.csproj' | |
- '!src/**/*.cs' | |
branches: | |
- '*' | |
jobs: | |
build: | |
name: 👌 Verify build | |
runs-on: windows-latest | |
steps: | |
- name: 🛒 Checkout repository | |
uses: actions/checkout@v4 | |
- name: 🛠️ Prepare | |
working-directory: test/MSBuild | |
run: | | |
dotnet restore ../../src/Refitter.sln | |
dotnet build -c release ../../src/Refitter/Refitter.csproj | |
dotnet build -c release ../../src/Refitter.MSBuild/Refitter.MSBuild.csproj | |
dotnet pack -c release ../../src/Refitter.MSBuild/Refitter.MSBuild.csproj -o . | |
nuget add .\Refitter.MSBuild.1.0.0.nupkg -source . | |
dotnet add package Refitter.MSBuild -s . | |
- name: 🛠️ Build | |
working-directory: test/MSBuild | |
run: dotnet build -v d -filelogger | |
- name: 🧪 Build Output | |
working-directory: test/MSBuild | |
run: cat msbuild.log | |
- name: 🗳️ Upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Packages | |
path: | | |
**/*.nupkg | |
README.md |