From 1dcec3109bff01e67c806c034a8b477cb4192324 Mon Sep 17 00:00:00 2001 From: One <43485962+c-git@users.noreply.github.com> Date: Sun, 22 Dec 2024 15:43:33 -0500 Subject: [PATCH] ci: split command into two steps --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 37a71ef..992123c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,5 +21,7 @@ jobs: steps: - uses: wykies/checkout@main - uses: wykies/setup-rust-toolchain@main + - name: Load sqlx query files for standalone version + run: ./scripts/copy_sqlx_queries.sh Standalone - name: Run Release Compile - run: ./scripts/copy_sqlx_queries.sh Standalone && cargo check --all-features --release \ No newline at end of file + run: cargo check --all-features --release \ No newline at end of file