Add DFP Email Risk endpoint (#55) #36
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: Publish NuGet package | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| build-and-publish: | |
| runs-on: ubuntu-latest | |
| name: Build and publish stytch package to NuGet | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Get version | |
| id: version | |
| run: | | |
| VERSION=$(sed -n 's:.*<Version>\(.*\)</Version>.*:\1:p' Stytch.net/Stytch.net.csproj) | |
| echo "release_tag=$VERSION" >> $GITHUB_OUTPUT | |
| - name: Get changed files | |
| id: files | |
| uses: jitterbit/get-changed-files@v1 | |
| - name: Check for Stytch.net.csproj diff | |
| id: diff | |
| run: | | |
| FOUND=0 | |
| for changed_file in ${{ steps.files.outputs.all }}; do | |
| if [[ $changed_file == "Stytch.net/Stytch.net.csproj" ]]; then | |
| FOUND=1 | |
| fi | |
| done | |
| echo "diff=$FOUND" >> $GITHUB_OUTPUT | |
| - name: Publish to NuGet | |
| env: | |
| NUGET_KEY: ${{ secrets.NUGET_KEY }} | |
| run: | | |
| dotnet pack -o ./build | |
| dotnet nuget push ./build/*.nupkg --source "nuget.org" --skip-duplicate --api-key $NUGET_KEY | |
| - name: Create release | |
| if: steps.diff.outputs.diff != 0 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: gh release create "${{ steps.version.outputs.release_tag }}" --generate-notes |