From 80729a6cfa6a3fe8be6169b0e13e5fd5d6422356 Mon Sep 17 00:00:00 2001 From: Jake Stanger Date: Sun, 11 Aug 2024 16:30:02 +0100 Subject: [PATCH] ci(deploy): fix issues with schema job --- .github/workflows/deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index bb86387..1e81950 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -72,8 +72,11 @@ jobs: - name: Install build deps run: ./.github/scripts/ubuntu_setup.sh + - name: Ensure target folder + run: mkdir -p target + - name: Build schema - run: cargo build --features schema -- --print-schema > target/schema-${{ github.ref_name }}.json + run: cargo run --features schema -- --print-schema > target/schema-${{ github.ref_name }}.json - name: Copy file via SSH uses: appleboy/scp-action@v0.1.7