CD #17
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: CD | |
on: | |
workflow_dispatch: | |
inputs: | |
publishEnabled: | |
description: "Publish to Nuget.org" | |
type: boolean | |
required: false | |
default: false | |
env: | |
nugetOutputPath: ${{ 'nupkgs' }} | |
jobs: | |
build_and_publish: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.x | |
- uses: nuget/setup-nuget@v2 | |
with: | |
nuget-version: "6.x" | |
- name: Generate Bindings | |
id: build_bindings | |
shell: pwsh | |
run: | | |
./Generate-Bindings.ps1 | |
- name: Generate NuGet packages | |
id: build_nugets | |
shell: pwsh | |
run: | | |
./Generate-NuGets.ps1 -revision ${{ github.run_number }} -outputfolder ${{ env.nugetOutputPath }} -debugSymbols false | |
- name: Publish NuGet | |
if: ${{ success() && github.event.inputs.publishEnabled == 'true' }} | |
env: | |
token: ${{secrets.EVERGINE_NUGETORG_TOKEN}} | |
shell: pwsh | |
run: | | |
cd ${{ env.nugetOutputPath }} | |
ls *.nupkg | |
dotnet nuget push "**/*.nupkg" --skip-duplicate --no-symbols -k "$env:token" -s https://api.nuget.org/v3/index.json | |
- name: SendGrid Mail Action | |
if: ${{ failure() }} | |
uses: mmichailidis/[email protected] | |
with: | |
# The token for sendgrid | |
sendgrid-token: ${{ secrets.WAVE_SENDGRID_TOKEN }} | |
# List of emails separated by comma that the email will go | |
mail: ${{ secrets.EVERGINE_EMAILREPORT_LIST }} | |
# The email that will be shown as sender | |
from: ${{ secrets.EVERGINE_EMAIL }} | |
# The subject of the email | |
subject: WebGPU.Net CD build has failed | |
# Defines if it should be one email with multiple address or multiple emails with a single address | |
individual: false | |
# The body of the mail. The placeholders that can be used are $EVENT$, $ISSUE$, $ACTION$ | |
text: something went wrong when building WebGPU.Net |