From 458f6e61c1a58c8c233832206034615f960e209d Mon Sep 17 00:00:00 2001 From: Michael Haswell Date: Thu, 25 Apr 2024 15:02:04 -0700 Subject: [PATCH] Remove quotes from package version value --- .github/workflows/buildTestPublishContainerDeploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/buildTestPublishContainerDeploy.yml b/.github/workflows/buildTestPublishContainerDeploy.yml index 20d184899..f317b36e7 100644 --- a/.github/workflows/buildTestPublishContainerDeploy.yml +++ b/.github/workflows/buildTestPublishContainerDeploy.yml @@ -28,7 +28,7 @@ jobs: - name: Set package version id: set-package-version run: | - echo package-tag=$(npm pkg get version) >> $GITHUB_OUTPUT + echo package-tag=$(npm pkg get version | tr -d '"') >> $GITHUB_OUTPUT publish-container: if: ${{ github.repository == 'bcgov/des-notifybc' && github.event_name != 'pull_request' }} needs: build-and-test