mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
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:
parent
c54fe0f3e5
commit
657edd38b0
2 changed files with 10 additions and 6 deletions
2
.github/workflows/extension_bump.yml
vendored
2
.github/workflows/extension_bump.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue