Skip to content

Update wgpu native to [v22.1.0.5](https://github.com/gfx-rs/wgpu-nati… #31

Update wgpu native to [v22.1.0.5](https://github.com/gfx-rs/wgpu-nati…

Update wgpu native to [v22.1.0.5](https://github.com/gfx-rs/wgpu-nati… #31

Workflow file for this run

name: Build
on:
push:
branches:
- 'main'
paths-ignore:
- '*.md'
pull_request:
paths-ignore:
- '*.md'
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 Alimer.Bindings.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