-
Notifications
You must be signed in to change notification settings - Fork 1.6k
chore: comment out release-base-action job in release workflow #833
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -109,48 +109,48 @@ jobs: | |
|
|
||
| echo "Updated $major_version tag to point to $next_version" | ||
|
|
||
| release-base-action: | ||
| needs: create-release | ||
| if: ${{ !inputs.dry_run }} | ||
| runs-on: ubuntu-latest | ||
| environment: production | ||
| steps: | ||
| - name: Checkout base-action repo | ||
| uses: actions/checkout@v5 | ||
| with: | ||
| repository: anthropics/claude-code-base-action | ||
| token: ${{ secrets.CLAUDE_CODE_BASE_ACTION_PAT }} | ||
| fetch-depth: 0 | ||
|
|
||
| # - name: Create and push tag | ||
| # run: | | ||
| # next_version="${{ needs.create-release.outputs.next_version }}" | ||
|
|
||
| # git config user.name "github-actions[bot]" | ||
| # git config user.email "github-actions[bot]@users.noreply.github.com" | ||
|
|
||
| # # Create the version tag | ||
| # git tag -a "$next_version" -m "Release $next_version - synced from claude-code-action" | ||
| # git push origin "$next_version" | ||
|
|
||
| # # Update the beta tag | ||
| # git tag -fa beta -m "Update beta tag to ${next_version}" | ||
| # git push origin beta --force | ||
|
|
||
| # - name: Create GitHub release | ||
| # env: | ||
| # GH_TOKEN: ${{ secrets.CLAUDE_CODE_BASE_ACTION_PAT }} | ||
| # run: | | ||
| # next_version="${{ needs.create-release.outputs.next_version }}" | ||
|
|
||
| # # Create the release | ||
| # gh release create "$next_version" \ | ||
| # --repo anthropics/claude-code-base-action \ | ||
| # --title "$next_version" \ | ||
| # --notes "Release $next_version - synced from anthropics/claude-code-action" \ | ||
| # --latest=false | ||
|
|
||
| # # Update beta release to be latest | ||
| # gh release edit beta \ | ||
| # --repo anthropics/claude-code-base-action \ | ||
| # --latest | ||
| # release-base-action: | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No workflow dependency issues detected Good news: No other jobs in this workflow have a The workflow has:
Since
ashwin-ant marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| # needs: create-release | ||
| # if: ${{ !inputs.dry_run }} | ||
| # runs-on: ubuntu-latest | ||
| # environment: production | ||
| # steps: | ||
| # - name: Checkout base-action repo | ||
| # uses: actions/checkout@v5 | ||
| # with: | ||
| # repository: anthropics/claude-code-base-action | ||
| # token: ${{ secrets.CLAUDE_CODE_BASE_ACTION_PAT }} | ||
| # fetch-depth: 0 | ||
| # | ||
| # - name: Create and push tag | ||
| # run: | | ||
| # next_version="${{ needs.create-release.outputs.next_version }}" | ||
| # | ||
| # git config user.name "github-actions[bot]" | ||
| # git config user.email "github-actions[bot]@users.noreply.github.com" | ||
| # | ||
| # # Create the version tag | ||
| # git tag -a "$next_version" -m "Release $next_version - synced from claude-code-action" | ||
| # git push origin "$next_version" | ||
| # | ||
| # # Update the beta tag | ||
| # git tag -fa beta -m "Update beta tag to ${next_version}" | ||
| # git push origin beta --force | ||
| # | ||
| # - name: Create GitHub release | ||
| # env: | ||
| # GH_TOKEN: ${{ secrets.CLAUDE_CODE_BASE_ACTION_PAT }} | ||
| # run: | | ||
| # next_version="${{ needs.create-release.outputs.next_version }}" | ||
| # | ||
| # # Create the release | ||
| # gh release create "$next_version" \ | ||
| # --repo anthropics/claude-code-base-action \ | ||
| # --title "$next_version" \ | ||
| # --notes "Release $next_version - synced from anthropics/claude-code-action" \ | ||
| # --latest=false | ||
| # | ||
| # # Update beta release to be latest | ||
| # gh release edit beta \ | ||
| # --repo anthropics/claude-code-base-action \ | ||
| # --latest | ||
ashwin-ant marked this conversation as resolved.
Show resolved
Hide resolved
|
||
Uh oh!
There was an error while loading. Please reload this page.