mirror of
https://github.com/Phantop/LADXHD.git
synced 2024-11-21 14:02:45 +00:00
22 lines
510 B
YAML
22 lines
510 B
YAML
name: build
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-dotnet@v3
|
|
with:
|
|
dotnet-version: '6.0.x' # SDK Version to use.
|
|
- name: Create the package
|
|
run: dotnet publish -c Release
|
|
- name: Upload build artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: LADXHD
|
|
path: bin/Release/net6.0-windows/win-x64/publish/
|