diff --git a/.github/workflows/deploy-artifact-as-branch.yml b/.github/workflows/deploy-artifact-as-branch.yml index 586d2dc0e1..ecd7e554ca 100644 --- a/.github/workflows/deploy-artifact-as-branch.yml +++ b/.github/workflows/deploy-artifact-as-branch.yml @@ -2,9 +2,6 @@ name: Deploy specified artifact as a branch on: workflow_call: inputs: - workflow_id: - required: true - type: string artifact_name: required: true type: string diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 1f82a51e69..ab6e6cc588 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -9,7 +9,6 @@ jobs: if: github.ref == 'refs/heads/main' uses: ./.github/workflows/deploy-artifact-as-branch.yml with: - workflow_id: ${{github.run_id}} artifact_name: npmDist target_branch: npm commit_message: "Deploy ${{github.event.workflow_run.head_sha}} to 'npm' branch" @@ -20,7 +19,6 @@ jobs: if: github.ref == 'refs/heads/main' uses: ./.github/workflows/deploy-artifact-as-branch.yml with: - workflow_id: ${{github.run_id}} artifact_name: denoDist target_branch: deno commit_message: "Deploy ${{github.event.workflow_run.head_sha}} to 'deno' branch"