From 6e1b09a3f239ef86ea997f63f38f63d39b6d15b4 Mon Sep 17 00:00:00 2001 From: Douglas Gubert Date: Thu, 13 Jun 2024 17:30:45 -0300 Subject: [PATCH] Remove automation to publish the 'deno' tag --- .github/workflows/build_and_test.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 9ba01c5f6..d6278d8f2 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -147,7 +147,7 @@ jobs: publish: runs-on: ubuntu-latest - if: github.event_name == 'release' || github.ref == 'refs/heads/alpha' || github.ref == 'refs/heads/beta' || github.ref == 'refs/heads/feat/deno-runtime' + if: github.event_name == 'release' || github.ref == 'refs/heads/alpha' || github.ref == 'refs/heads/beta' needs: test steps: @@ -182,8 +182,6 @@ jobs: GIT_BRANCH="${GITHUB_REF#*heads/}" if [[ $GIT_BRANCH == 'alpha' ]]; then npm run go-publish-alpha - elif [[ $GIT_BRANCH == 'feat/deno-runtime' ]]; then - npm publish --access public --tag deno else npm run go-publish-beta fi;