From b26b05ddfe6edc103da15e4122404994e6d23aa0 Mon Sep 17 00:00:00 2001 From: Lukas Burgholzer Date: Mon, 1 Jul 2024 05:30:13 -0700 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20fix=20typo=20in=20workflow?= =?UTF-8?q?=20(#13)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/reusable-mqt-core-update.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reusable-mqt-core-update.yml b/.github/workflows/reusable-mqt-core-update.yml index 845b093..323c652 100644 --- a/.github/workflows/reusable-mqt-core-update.yml +++ b/.github/workflows/reusable-mqt-core-update.yml @@ -127,8 +127,8 @@ jobs: id: update-version if: steps.compare-versions.outputs.update == 'true' run: | - sed -i 's/set(MQT_CORE_VERSION.*/set(MQT_CORE_VERSION ${{ steps.detemine-new-version-and-revision.outputs.new_version }}/' cmake/ExternalDependencies.cmake - sed -i 's/set(MQT_CORE_REV.*/set(MQT_CORE_REV "${{ steps.detemine-new-version-and-revision.outputs.new_revision }}"/' cmake/ExternalDependencies.cmake + sed -i 's/set(MQT_CORE_VERSION.*/set(MQT_CORE_VERSION ${{ steps.determine-new-version-and-revision.outputs.new_version }}/' cmake/ExternalDependencies.cmake + sed -i 's/set(MQT_CORE_REV.*/set(MQT_CORE_REV "${{ steps.determine-new-version-and-revision.outputs.new_revision }}"/' cmake/ExternalDependencies.cmake git diff # Create a pull request to merge the changes into the main branch. - name: Create pull request