From e0ef6f56940f8ba88cb4af04cce925541c2f80de Mon Sep 17 00:00:00 2001 From: Ben Elan Date: Mon, 10 Jun 2024 02:24:54 -0700 Subject: [PATCH] ci(prerelease): use absolute path to publish script (#9546) Use an absolute path to the pre-release publishing script, because I'm not sure where relative paths start from. --- .github/workflows/deploy-prerelease.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-prerelease.yml b/.github/workflows/deploy-prerelease.yml index e582df17159..c5450de45fa 100644 --- a/.github/workflows/deploy-prerelease.yml +++ b/.github/workflows/deploy-prerelease.yml @@ -33,7 +33,7 @@ jobs: GH_TOKEN_FOR_STORYBOOK: ${{ github.actor }}:${{ secrets.ADMIN_TOKEN }} NPM_CONFIG_PROVENANCE: true BRANCH: ${{ github.base_ref || github.ref_name }} - run: ../scripts/publishPrerelease.sh + run: "${{ github.workspace }}/.github/scripts/publishPrerelease.sh" - name: notify teams uses: toko-bifrost/ms-teams-deploy-card@3.1.2 if: ${{ !cancelled() && github.event_name == 'push' }}