From 984b38ccba1d84e6e62053008dbec5b242d092f9 Mon Sep 17 00:00:00 2001 From: eipastel Date: Sun, 28 Jun 2026 13:38:19 -0300 Subject: [PATCH] chore(ci): remove workflow Dist-tag [NO-TICKET] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A promoção de dist-tag deixou de ser necessária com o release pela label "release" no PR. Sobram só CI e Release nas Actions. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/dist-tag.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/dist-tag.yml diff --git a/.github/workflows/dist-tag.yml b/.github/workflows/dist-tag.yml deleted file mode 100644 index b41c4f3..0000000 --- a/.github/workflows/dist-tag.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Dist-tag - -# Move/cria uma dist-tag do npm sem precisar de OTP (usa NPM_TOKEN de automação). -# Útil porque a conta exige OTP no CLI local. Ex: promover uma beta para "latest". -on: - workflow_dispatch: - inputs: - version: - description: 'Versão alvo (ex: 0.0.1-beta.1)' - required: true - tag: - description: 'Dist-tag a apontar (ex: latest)' - required: true - default: latest - -permissions: - contents: read - -jobs: - dist-tag: - if: github.repository == 'eipastel/psjava' - runs-on: ubuntu-latest - timeout-minutes: 5 - steps: - - uses: actions/setup-node@v5 - with: - node-version: '20' - registry-url: 'https://registry.npmjs.org' - - - name: Add dist-tag - run: npm dist-tag add @thiagodiogo/psjava@${{ inputs.version }} ${{ inputs.tag }} - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}