From 7d6c4126372817220d54dbd9e163e87b80a813c9 Mon Sep 17 00:00:00 2001 From: Francesco Date: Sun, 3 Dec 2023 12:05:12 +0100 Subject: [PATCH] Update bindings path Signed-off-by: Francesco --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f2e6c46..9422367 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,11 +34,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo and submodules - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Parse cargo.toml and assert version tag matching # Hacky way of parsing the version from Cargo.toml and comparing it to tag run: | - if [ "$(cat bindings/rust/Cargo.toml | grep version | head -n 1 |awk '{print $3}' | tr -d '"' )" == "${GITHUB_REF#refs/*/}" ];then exit 0; else exit 1; fi + if [ "$(cat rust-bindings/Cargo.toml | grep version | head -n 1 |awk '{print $3}' | tr -d '"' )" == "${GITHUB_REF#refs/*/}" ];then exit 0; else exit 1; fi publish: needs: [test, version-tag-match] # Ensure master is tagged @@ -71,5 +71,5 @@ jobs: run: forge build - name: Publish to cargo - working-directory: bindings/rust + working-directory: rust-bindings run: cargo publish --registry fulmin-labs-registry