From 6ac05d7b6150e05cf33b56c86020a0facd647f78 Mon Sep 17 00:00:00 2001 From: Rens Rooimans Date: Wed, 21 Aug 2024 11:14:43 +0200 Subject: [PATCH] fix release CI ccip reference (#1340) ## Motivation Due to a bad main repo merge, the CI was reverted back to it's non-CCIP state. ## Solution Use the code that was in the repo at the time of the 1.4 release --- .github/workflows/solidity.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/solidity.yml b/.github/workflows/solidity.yml index 4dfe3cbb49..79c74ecd0b 100644 --- a/.github/workflows/solidity.yml +++ b/.github/workflows/solidity.yml @@ -64,9 +64,9 @@ jobs: id: release-tag-check uses: smartcontractkit/chainlink-github-actions/release/release-tag-check@5dd916d08c03cb5f9a97304f4f174820421bb946 # v2.3.11 env: - # Match semver git tags with a "contracts-" prefix. - RELEASE_REGEX: '^contracts-v[0-9]+\.[0-9]+\.[0-9]+$' - PRE_RELEASE_REGEX: '^contracts-v[0-9]+\.[0-9]+\.[0-9]+-(.+)$' + # Match semver git tags with a "contracts-ccip/" prefix. + RELEASE_REGEX: '^contracts-ccip/v[0-9]+\.[0-9]+\.[0-9]+$' + PRE_RELEASE_REGEX: '^contracts-ccip/v[0-9]+\.[0-9]+\.[0-9]+-(.+)$' # Get the version by stripping the "contracts-v" prefix. VERSION_PREFIX: 'contracts-v'