Skip to content

Commit

Permalink
Create build-native.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dme-compunet committed Dec 11, 2024
1 parent 13ff4d1 commit 23f2394
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build-native.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build Gallery (Native)

on:
push:
pull_request:
workflow_dispatch:

jobs:
publish:
runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 9.0.x

- name: Build
run: dotnet publish src/Lucide.Avalonia/Lucide.Avalonia.csproj -c Release -r win-x64 -o bin/

- name: Upload
uses: actions/upload-artifact@v4
with:
name: gallery-native
path: |
bin/*exe
bin/*dll

0 comments on commit 23f2394

Please sign in to comment.