From bddfc2259776d2297c885fd50f98b2e2a56c00cc Mon Sep 17 00:00:00 2001 From: splincode Date: Mon, 25 Dec 2023 14:11:06 +0300 Subject: [PATCH] chore: remove --- .github/workflows/validate-tag.yml | 33 ------------------------------ 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/validate-tag.yml diff --git a/.github/workflows/validate-tag.yml b/.github/workflows/validate-tag.yml deleted file mode 100644 index 391543a42b08..000000000000 --- a/.github/workflows/validate-tag.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: ⚙️ Validate release tag -on: - push: - branches: [main, 'release/*'] - -jobs: - validate-tag: - name: Validate tag - runs-on: ubuntu-latest - steps: - - uses: taiga-family/ci/actions/setup/checkout@v1.45.1 - with: - fetch-depth: 0 - - - uses: taiga-family/ci/actions/setup/node@v1.45.1 - id: nodejs-workspace - - - name: Get last tag - id: info - run: echo "tag=$(git tag --list --sort=-authordate --merged | head -n1)" >> $GITHUB_OUTPUT - - - name: Show an error if the tag does not match - if: - ${{ steps.nodejs-workspace.outputs.root-package-version != steps.info.outputs.tag && - !contains(steps.nodejs-workspace.outputs.root-package-version, '-rc') }} - run: | - echo "Version from package.json: ${{ steps.nodejs-workspace.outputs.root-package-version }}" - echo "Last git tag: ${{ steps.info.outputs.tag }}" - exit 1 - -concurrency: - group: validate-tag-${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true