From 3ad5a18d9825bfe9841203f687f47f96fbcdde15 Mon Sep 17 00:00:00 2001 From: Bence Haromi Date: Fri, 30 Aug 2024 13:52:56 +0100 Subject: [PATCH] ci: remove npm tag workflow --- .github/workflows/remove-npm-tag.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/remove-npm-tag.yaml diff --git a/.github/workflows/remove-npm-tag.yaml b/.github/workflows/remove-npm-tag.yaml new file mode 100644 index 0000000..9b27da2 --- /dev/null +++ b/.github/workflows/remove-npm-tag.yaml @@ -0,0 +1,20 @@ +name: Remove NPM Package TAG +on: push +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 18.18.0 + registry-url: 'https://registry.npmjs.org' + scope: '@matterlabs' + - run: yarn + - env: + NODE_AUTH_TOKEN: ${{ secrets.NPMJS_NPM_MATTERLABS_AUTOMATION_TOKEN }} + run: | + yarn tag remove @matterlabs/zksync-contracts 1.0.0-beta.1 + yarn tag remove @matterlabs/zksync-contracts 1.0.0-beta.2 + yarn tag remove @matterlabs/zksync-contracts new + yarn tag remove @matterlabs/zksync-contracts next \ No newline at end of file