From 48143979e5057720c0a0e9bd983b8cd5ad53d4b8 Mon Sep 17 00:00:00 2001 From: Neshura Date: Wed, 13 Dec 2023 19:08:05 +0100 Subject: [PATCH] Fix actions version check directory --- .forgejo/workflows/build+release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/build+release.yml b/.forgejo/workflows/build+release.yml index ccbb560..d7f3bc7 100644 --- a/.forgejo/workflows/build+release.yml +++ b/.forgejo/workflows/build+release.yml @@ -19,7 +19,7 @@ jobs: - name: Check if Version in Cargo.toml matches Tag run: | - VERSION=$(cat src-tauri/Cargo.toml | grep -E "(^|\|)version =" | cut -f2- -d= | tr -d \" | tr -d " ") + VERSION=$(cat src/Cargo.toml | grep -E "(^|\|)version =" | cut -f2- -d= | tr -d \" | tr -d " ") if test $VERSION != "${{ github.ref_name }}"; then echo "Expected Version is: '${{ github.ref_name }}' actual Version is: '$VERSION'"; exit 1