File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ name : " Nightly release canary"
2+
3+ on :
4+ workflow_dispatch : {}
5+ schedule :
6+ # 5AM UTC
7+ - cron : " 0 5 * * *"
8+
9+ concurrency :
10+ group : ${{ github.workflow }}
11+
12+ permissions :
13+ actions : write
14+ id-token : write
15+
16+ jobs :
17+ release_dry_run :
18+ runs-on :
19+ - ubunutu-latest
20+ steps :
21+ - uses : actions/checkout@v4
22+ with :
23+ # Needed to pull full commit history for release version number inference
24+ fetch-depth : 0
25+ - uses : ./.github/actions/cleanup
26+ - uses : ./.github/actions/setup-rust
27+ -
uses :
spiraldb/actions/.github/actions/[email protected] 28+ - name : Run release-plz
29+ id : run-release-plz
30+ 31+ with :
32+ command : release --dry-run
33+ env :
34+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
35+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
You can’t perform that action at this time.
0 commit comments