From a35b627b0aa31a00a99ada13924fa0c8d3505951 Mon Sep 17 00:00:00 2001 From: Shubham Jain Date: Fri, 23 Jun 2023 21:04:04 +0100 Subject: [PATCH] Don't publish until build and tag pushed --- .github/workflows/deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7edc2c7a..2f3ff8fd 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -47,9 +47,11 @@ jobs: git tag -a "$UCLAPI_VERSION" -m "$UCLAPI_VERSION" git push git push origin $UCLAPI_VERSION + publish: name: "Publish JavaScript SDK to NPM" runs-on: ubuntu-latest + needs: build steps: - uses: actions/checkout@v2