mirror of
https://github.com/docker/build-push-action.git
synced 2025-08-11 02:52:11 +00:00
chore: comment out bump tags workflow to prevent breaking changes
- v2 is a breaking version requiring setup-docker-builder to be called first - Commenting out workflow to prevent accidentally bumping v1 tags to breaking changes - Workflow kept as reference for future tag bumping procedures 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
7bff2036c1
commit
6eb4580a2b
49
.github/workflows/bump_tags_to_master.yaml
vendored
49
.github/workflows/bump_tags_to_master.yaml
vendored
@ -1,23 +1,28 @@
|
|||||||
name: Bump Tags to master
|
# IMPORTANT: This workflow is commented out to prevent breaking existing customer workflows.
|
||||||
|
# v2 is a breaking version as it relies on setup-docker-builder being called before this action.
|
||||||
|
# To avoid bumping older version tags to the head of master and breaking existing customer workflows,
|
||||||
|
# we will keep this workflow only as a reference on how to bump tags.
|
||||||
|
|
||||||
on:
|
# name: Bump Tags to master
|
||||||
workflow_dispatch:
|
#
|
||||||
|
# on:
|
||||||
jobs:
|
# workflow_dispatch:
|
||||||
bump-tags:
|
#
|
||||||
runs-on: blacksmith
|
# jobs:
|
||||||
steps:
|
# bump-tags:
|
||||||
- name: Checkout code
|
# runs-on: blacksmith
|
||||||
uses: actions/checkout@v4
|
# steps:
|
||||||
with:
|
# - name: Checkout code
|
||||||
fetch-depth: 0
|
# uses: actions/checkout@v4
|
||||||
|
# with:
|
||||||
- name: Update v1, v1.0.0-beta tags
|
# fetch-depth: 0
|
||||||
run: |
|
#
|
||||||
git config user.name github-actions[bot]
|
# - name: Update v1, v1.0.0-beta tags
|
||||||
git config user.email github-actions[bot]@users.noreply.github.com
|
# run: |
|
||||||
git tag -fa v1.2 -m "Update v1.2 tag to latest commit on master"
|
# git config user.name github-actions[bot]
|
||||||
git tag -fa v1.1 -m "Update v1.1 tag to latest commit on master"
|
# git config user.email github-actions[bot]@users.noreply.github.com
|
||||||
git tag -fa v1 -m "Update v1 tag to latest commit on master"
|
# git tag -fa v1.2 -m "Update v1.2 tag to latest commit on master"
|
||||||
git tag -fa v1.0.0-beta -m "Update v1.0.0-beta tag to latest commit on master"
|
# git tag -fa v1.1 -m "Update v1.1 tag to latest commit on master"
|
||||||
git push origin v1.2 v1.1 v1 v1.0.0-beta --force
|
# git tag -fa v1 -m "Update v1 tag to latest commit on master"
|
||||||
|
# git tag -fa v1.0.0-beta -m "Update v1.0.0-beta tag to latest commit on master"
|
||||||
|
# git push origin v1.2 v1.1 v1 v1.0.0-beta --force
|
Loading…
x
Reference in New Issue
Block a user