-
Notifications
You must be signed in to change notification settings - Fork 9
47 lines (45 loc) · 1.53 KB
/
CI.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
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 }}
- 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