From 9c4611c9f08de235045fa8aa02249b4702768e6b Mon Sep 17 00:00:00 2001 From: Ben Cromwell Date: Thu, 17 Oct 2024 14:43:12 +0100 Subject: [PATCH] chore(ci): remove v major and v major.minor tag moves --- .github/workflows/release.yaml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 9f60dd0..29d838f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -51,13 +51,6 @@ jobs: private-key: ${{ secrets.RELEASE_PLEASE_GITHUB_APP_PRIVATE_KEY }} default-branch: ${{ needs.prepare.outputs.rp_default_branch }} - test: - runs-on: ubuntu-latest - steps: - - name: Run tests - run: | - echo 'Running tests... all OK' - # Always runs after release-please to print all the outputs. debug: runs-on: ubuntu-latest @@ -92,12 +85,3 @@ jobs: echo "Version: ${{ needs.release-please.outputs.version }}" echo "Major: ${{ needs.release-please.outputs.major }}" echo "Minor: ${{ needs.release-please.outputs.minor }}" - # Example of how to move v1 and v1.2 tags to the new release commit. This - # is typically only done in very specific types of projects, and is - # normally discouraged in general. - - name: Update MAJOR and MAJOR.MINOR tags - uses: jimeh/update-tags-action@v1 - with: - tags: | - v${{ needs.release-please.outputs.major }} - v${{ needs.release-please.outputs.major }}.${{ needs.release-please.outputs.minor }}