From fd37a91c26af0ec9308af583d006906bcc8ee484 Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Mon, 21 Sep 2026 11:59:29 -0300 Subject: [PATCH] ci: remove v0.2.0 bootstrap workflow Signed-off-by: Vitor Mattos --- .github/workflows/bootstrap-v0.2.0.yml | 42 -------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/bootstrap-v0.2.0.yml diff --git a/.github/workflows/bootstrap-v0.2.0.yml b/.github/workflows/bootstrap-v0.2.0.yml deleted file mode 100644 index 099e5a0..0000000 --- a/.github/workflows/bootstrap-v0.2.0.yml +++ /dev/null @@ -1,42 +0,0 @@ -# SPDX-FileCopyrightText: 2026 LibreCode coop and contributors -# SPDX-License-Identifier: AGPL-3.0-or-later - -name: Bootstrap governance v0.2.0 - -on: - push: - branches: - - main - paths: - - '.github/workflows/bootstrap-v0.2.0.yml' - -permissions: - contents: write - -jobs: - publish: - runs-on: ubuntu-latest - timeout-minutes: 15 - env: - GH_TOKEN: ${{ github.token }} - TAG: v0.2.0 - TARGET_SHA: 3755c14f01c7d544fe89da3a6daf540faa2510ce - steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - with: - persist-credentials: false - ref: ${{ env.TARGET_SHA }} - - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 - with: - node-version: 24 - package-manager-cache: false - - run: npm install --ignore-scripts - - run: npm run check - - name: Refuse to overwrite existing release - run: | - if gh release view "${TAG}" >/dev/null 2>&1; then - echo "::error::Release ${TAG} already exists" - exit 1 - fi - - name: Publish release - run: gh release create "${TAG}" --target "${TARGET_SHA}" --title "${TAG}" --generate-notes