Skip to content

Commit 9206d0c

Browse files
committed
Move release dry-run to where it makes more sense
1 parent 28c2a10 commit 9206d0c

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

.github/workflows/rust.yaml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,15 @@ jobs:
5959
LD_LIBRARY_PATH: ${{ github.workspace }}/libduckdb
6060
run: cargo clippy --all-targets --all-features --locked -- -D warnings
6161

62+
- name: Dry-run release of crates
63+
if: matrix.os == 'ubuntu-latest'
64+
uses: katyo/publish-crates@v2
65+
with:
66+
path: "./"
67+
args: --allow-dirty --all-features
68+
dry-run: true
69+
ignore-unpublished-changes: true
70+
6271
# For windows
6372
- name: Windows extract duckdb
6473
if: matrix.os == 'windows-latest'
@@ -139,10 +148,3 @@ jobs:
139148
export ASAN_SYMBOLIZER_PATH=$(which llvm-symbolizer)
140149
echo $ASAN_SYMBOLIZER_PATH
141150
cargo -Z build-std test --features "serde_json url r2d2 uuid polars extensions-full" --target x86_64-unknown-linux-gnu --package duckdb
142-
- name: publish crates --dry-run
143-
uses: katyo/publish-crates@v2
144-
with:
145-
path: "./"
146-
args: --allow-dirty --all-features
147-
dry-run: true
148-
ignore-unpublished-changes: true

0 commit comments

Comments
 (0)