diff --git a/.github/workflows/nuget.yml b/.github/workflows/nuget.yml new file mode 100644 index 0000000..007b60b --- /dev/null +++ b/.github/workflows/nuget.yml @@ -0,0 +1,34 @@ +name: "Deploy to Nuget.org" + +on: + workflow_dispatch: + +jobs: + deploy: + runs-on: ubuntu-latest + env: + DOTNET_CLI_TELEMETRY_OPTOUT: true + + steps: + - name: Checkout Project + uses: actions/checkout@v2 + + - name: Setup .NET + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 5.0.x + + - name: Restore dependencies + run: dotnet restore + + - name: Build + run: dotnet build --configuration Release --no-restore + + - name: Test + run: dotnet test --no-build --configuration Release --verbosity normal + + - name: Pack + run: dotnet pack --no-build --configuration Release InterfaceGenerator/InterfaceGenerator.csproj --output . + + - name: Push to nuget.org + run: dotnet nuget push *.nupkg --source "https://api.nuget.org/v3/index.json" --api-key ${{secrets.NUGET_API_KEY}} --skip-duplicate \ No newline at end of file