From 9d2269dc755d7cc3a21909ee3376b48f83e503f8 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Thu, 11 Feb 2021 18:26:25 -0800 Subject: [PATCH] devops: attempt to fix npm canary publishing --- .github/workflows/publish_canary_npm.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_canary_npm.yml b/.github/workflows/publish_canary_npm.yml index 64150fa1c424b..535bd9f810acf 100644 --- a/.github/workflows/publish_canary_npm.yml +++ b/.github/workflows/publish_canary_npm.yml @@ -22,9 +22,9 @@ jobs: - run: npm ci - run: npm run build - run: node utils/build/update_canary_version.js --today-date - if: contains(github.ref, "master") + if: contains(github.ref, 'master') - run: node utils/build/update_canary_version.js --commit-timestamp - if: contains(github.ref, "release") + if: contains(github.ref, 'release') - run: utils/publish_all_packages.sh --tip-of-tree env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}