Skip to content

Update to vulkan 1.4.303, bump version to 2.0.0, next version will fo… #130

Update to vulkan 1.4.303, bump version to 2.0.0, next version will fo…

Update to vulkan 1.4.303, bump version to 2.0.0, next version will fo… #130

Workflow file for this run

name: Build
on:
push:
branches:
- 'main'
paths-ignore:
- '*.md'
- 'LICENSE'
pull_request:
paths-ignore:
- '*.md'
- 'LICENSE'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
global-json-file: ./global.json
- name: Pack
run: dotnet pack Vortice.Vulkan.sln --configuration Release
- name: Publish to NuGet
if: github.event_name == 'push'
run: dotnet nuget push artifacts/package/release/*.nupkg -k ${{secrets.NUGET_TOKEN}} --skip-duplicate --source https://api.nuget.org/v3/index.json