feat: add nightly build upload to GitHub Releases
Some checks failed
Build Project / build (push) Has been cancelled
Deploy Documentation / deploy (push) Has been cancelled
Build Project / Upload Nightly Build to GitHub Releases (push) Has been cancelled

This commit is contained in:
2025-07-09 21:07:59 +03:00
parent 334ddc73c1
commit 12cee9b7c0
2 changed files with 20 additions and 1 deletions

View File

@ -33,3 +33,22 @@ jobs:
with:
name: bridge
path: build
nightly:
name: Upload Nightly Build to GitHub Releases
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Download All Builds
uses: actions/download-artifact@v4
- name: Update Nightly
run: gh release upload nightly bridge/* -R ${{github.repository}} --clobber
env:
GH_TOKEN: ${{ github.token }}