krata: introduce nightly build

This commit is contained in:
Alex Zenla
2024-03-05 12:55:28 +00:00
parent 8653fd6249
commit a37f33e688
7 changed files with 48 additions and 37 deletions

18
.github/workflows/nightly.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: nightly
on:
schedule:
- cron: "0 4 * * *"
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: ./scripts/ci/install-deps.sh
- run: ./scripts/ci/nightly.sh
- uses: actions/upload-artifact@v4
with:
name: krata-nightly
path: krata.tgz
compression-level: 0