@@ -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