From 14a34f744bbdf8f2e8ca1cc0bd7b5517a9f5afe1 Mon Sep 17 00:00:00 2001 From: Matthew Nitschke Date: Wed, 25 Sep 2024 08:31:52 -0600 Subject: [PATCH] fixed release matching --- .github/workflows/checks.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index 52c5e3b..faac61e 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -84,11 +84,10 @@ jobs: - id: analyze-pubspec working-directory: ${{ inputs.package-path }} run: | - PACKAGE_NAME=$(yq '.name' pubspec.yaml) PACKAGE_VERSION=$(yq '.version' pubspec.yaml) echo "package_version=$PACKAGE_VERSION" >> $GITHUB_OUTPUT - echo "release_ref=release_${PACKAGE_NAME}_${PACKAGE_VERSION}" >> $GITHUB_OUTPUT + echo "release_ref=release_${{ github.event.repository.name }}_${PACKAGE_VERSION}" >> $GITHUB_OUTPUT # Only validate the publish for release pull requests, as determined by the branch name - name: Debug