extension_ci: Use temporary fork for release action (#51674)

Moving to the for here before the fix gets upstreamed. We might revisit
this at a later point anyway.

Release Notes:

- N/A
This commit is contained in:
Finn Evers 2026-03-16 15:30:01 +01:00 committed by GitHub
parent c54fe0f3e5
commit 657edd38b0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 6 deletions

View file

@ -230,7 +230,7 @@ jobs:
echo "extension_id=${EXTENSION_ID}" >> "$GITHUB_OUTPUT"
- name: extension_bump::release_action
uses: huacnlee/zed-extension-action@v2
uses: zed-extensions/update-action@543925fc45da8866b0d017218a656c8a3296ed3f
with:
extension-name: ${{ steps.get-extension-id.outputs.extension_id }}
push-to: zed-industries/extensions

View file

@ -427,11 +427,15 @@ fn release_action(
tag: JobOutput,
generated_token: StepOutput,
) -> Step<Use> {
named::uses("huacnlee", "zed-extension-action", "v2")
.add_with(("extension-name", extension_id.to_string()))
.add_with(("push-to", "zed-industries/extensions"))
.add_with(("tag", tag.to_string()))
.add_env(("COMMITTER_TOKEN", generated_token.to_string()))
named::uses(
"zed-extensions",
"update-action",
"543925fc45da8866b0d017218a656c8a3296ed3f",
)
.add_with(("extension-name", extension_id.to_string()))
.add_with(("push-to", "zed-industries/extensions"))
.add_with(("tag", tag.to_string()))
.add_env(("COMMITTER_TOKEN", generated_token.to_string()))
}
fn extension_workflow_secrets() -> (WorkflowSecret, WorkflowSecret) {