Skip to content

Commit a017b83

Browse files
ashwin-antclaude
andauthored
chore: comment out release-base-action job in release workflow (#833)
Temporarily disable the release-base-action job that syncs releases to the claude-code-base-action repository. The job checkout step and subsequent tag/release creation steps are now commented out. Claude-Generated-By: Claude Code (cli/claude-opus-4-5=100%) Claude-Steers: 2 Claude-Permission-Prompts: 2 Claude-Escapes: 0 Co-authored-by: Claude <noreply@anthropic.com>
1 parent 75f52e5 commit a017b83

File tree

1 file changed

+45
-45
lines changed

1 file changed

+45
-45
lines changed

.github/workflows/release.yml

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -109,48 +109,48 @@ jobs:
109109
110110
echo "Updated $major_version tag to point to $next_version"
111111
112-
release-base-action:
113-
needs: create-release
114-
if: ${{ !inputs.dry_run }}
115-
runs-on: ubuntu-latest
116-
environment: production
117-
steps:
118-
- name: Checkout base-action repo
119-
uses: actions/checkout@v5
120-
with:
121-
repository: anthropics/claude-code-base-action
122-
token: ${{ secrets.CLAUDE_CODE_BASE_ACTION_PAT }}
123-
fetch-depth: 0
124-
125-
# - name: Create and push tag
126-
# run: |
127-
# next_version="${{ needs.create-release.outputs.next_version }}"
128-
129-
# git config user.name "github-actions[bot]"
130-
# git config user.email "github-actions[bot]@users.noreply.github.com"
131-
132-
# # Create the version tag
133-
# git tag -a "$next_version" -m "Release $next_version - synced from claude-code-action"
134-
# git push origin "$next_version"
135-
136-
# # Update the beta tag
137-
# git tag -fa beta -m "Update beta tag to ${next_version}"
138-
# git push origin beta --force
139-
140-
# - name: Create GitHub release
141-
# env:
142-
# GH_TOKEN: ${{ secrets.CLAUDE_CODE_BASE_ACTION_PAT }}
143-
# run: |
144-
# next_version="${{ needs.create-release.outputs.next_version }}"
145-
146-
# # Create the release
147-
# gh release create "$next_version" \
148-
# --repo anthropics/claude-code-base-action \
149-
# --title "$next_version" \
150-
# --notes "Release $next_version - synced from anthropics/claude-code-action" \
151-
# --latest=false
152-
153-
# # Update beta release to be latest
154-
# gh release edit beta \
155-
# --repo anthropics/claude-code-base-action \
156-
# --latest
112+
# release-base-action:
113+
# needs: create-release
114+
# if: ${{ !inputs.dry_run }}
115+
# runs-on: ubuntu-latest
116+
# environment: production
117+
# steps:
118+
# - name: Checkout base-action repo
119+
# uses: actions/checkout@v5
120+
# with:
121+
# repository: anthropics/claude-code-base-action
122+
# token: ${{ secrets.CLAUDE_CODE_BASE_ACTION_PAT }}
123+
# fetch-depth: 0
124+
#
125+
# - name: Create and push tag
126+
# run: |
127+
# next_version="${{ needs.create-release.outputs.next_version }}"
128+
#
129+
# git config user.name "github-actions[bot]"
130+
# git config user.email "github-actions[bot]@users.noreply.github.com"
131+
#
132+
# # Create the version tag
133+
# git tag -a "$next_version" -m "Release $next_version - synced from claude-code-action"
134+
# git push origin "$next_version"
135+
#
136+
# # Update the beta tag
137+
# git tag -fa beta -m "Update beta tag to ${next_version}"
138+
# git push origin beta --force
139+
#
140+
# - name: Create GitHub release
141+
# env:
142+
# GH_TOKEN: ${{ secrets.CLAUDE_CODE_BASE_ACTION_PAT }}
143+
# run: |
144+
# next_version="${{ needs.create-release.outputs.next_version }}"
145+
#
146+
# # Create the release
147+
# gh release create "$next_version" \
148+
# --repo anthropics/claude-code-base-action \
149+
# --title "$next_version" \
150+
# --notes "Release $next_version - synced from anthropics/claude-code-action" \
151+
# --latest=false
152+
#
153+
# # Update beta release to be latest
154+
# gh release edit beta \
155+
# --repo anthropics/claude-code-base-action \
156+
# --latest

0 commit comments

Comments
 (0)