Skip to content

Commit 26278f5

Browse files
committed
.
1 parent 124bf69 commit 26278f5

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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+
uses: MarcoIeni/[email protected]
31+
with:
32+
command: release --dry-run
33+
env:
34+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

0 commit comments

Comments
 (0)