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