Skip to content

Fixing CI pipeline.

Fixing CI pipeline. #3

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
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}}
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: Vulkan Update NuGet 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 when wrong when updating new vk.xml file from KhronosRegistry