From f2d5071550904e8f45a04e595d373ea95f0f1ebe Mon Sep 17 00:00:00 2001 From: "maro.xt" <157622851+whitehai11@users.noreply.github.com> Date: Wed, 5 Aug 2026 19:51:48 +0200 Subject: [PATCH] Add automatic build and release workflow --- .github/workflows/release.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..a338b49 --- /dev/null +++ b/.github/workflows/release.yml @@ -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/** \ No newline at end of file