Skip to content

Commit

Permalink
chore(ci): remove v major and v major.minor tag moves
Browse files Browse the repository at this point in the history
  • Loading branch information
bencromwell committed Oct 17, 2024
1 parent 7f6bb49 commit 9c4611c
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}

0 comments on commit 9c4611c

Please sign in to comment.