Skip to content

Commit 2dc0ec6

Browse files
committed
.
1 parent e1ff74f commit 2dc0ec6

File tree

2 files changed

+51
-31
lines changed

2 files changed

+51
-31
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,26 @@ jobs:
305305
- name: Run Miri
306306
run: cargo miri nextest run --no-fail-fast -p vortex-buffer
307307

308+
release_dry_run:
309+
runs-on:
310+
- ubunutu-latest
311+
steps:
312+
- uses: actions/checkout@v4
313+
with:
314+
# Needed to pull full commit history for release version number inference
315+
fetch-depth: 0
316+
- uses: ./.github/actions/cleanup
317+
- uses: ./.github/actions/setup-rust
318+
- uses: spiraldb/actions/.github/actions/[email protected]
319+
- name: Run release-plz
320+
id: run-release-plz
321+
uses: MarcoIeni/[email protected]
322+
with:
323+
command: release --dry-run
324+
env:
325+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
326+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
327+
308328
bench-test:
309329
name: "bench test"
310330
runs-on: ubuntu-latest
Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
1-
name: "Nightly release canary"
1+
# name: "Nightly release canary"
22

3-
on:
4-
workflow_dispatch: {}
5-
schedule:
6-
# 5AM UTC
7-
- cron: "0 5 * * *"
3+
# on:
4+
# workflow_dispatch: {}
5+
# schedule:
6+
# # 5AM UTC
7+
# - cron: "0 5 * * *"
88

9-
concurrency:
10-
group: ${{ github.workflow }}
9+
# concurrency:
10+
# group: ${{ github.workflow }}
1111

12-
permissions:
13-
actions: write
14-
id-token: write
12+
# permissions:
13+
# actions: write
14+
# id-token: write
1515

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 }}
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)