Add automatic build and release workflow

This commit is contained in:
maro.xt
2026-08-05 19:51:48 +02:00
parent 3b23e53514
commit f2d5071550
+24
View File
@@ -0,0 +1,24 @@
name: Build & Release
on:
push:
branches: [main]
permissions:
contents: write
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Placeholder build
shell: pwsh
run: |
New-Item -ItemType Directory -Force dist
'Replace this with your actual build commands.' | Out-File dist\README.txt
- uses: softprops/action-gh-release@v2
with:
tag_name: nightly-${{ github.run_number }}
name: Nightly ${{ github.run_number }}
files: dist/**