ci: remove unused branch argument to pre-build script (#674)

This commit is contained in:
David Sanders 2024-11-15 15:35:21 -08:00 коммит произвёл GitHub
Родитель 9ee726b015
Коммит 94772f0ffa
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 5 удалений

6
.github/workflows/update-docs.yml поставляемый
Просмотреть файл

@ -5,10 +5,6 @@ on:
types: [doc_changes]
workflow_dispatch:
inputs:
branch:
type: string
description: The branch of the commit, usually something like `15-x-y`
required: true
sha:
type: string
description: The SHA of the `electron/electron` commit
@ -36,7 +32,7 @@ jobs:
uses: bahmutov/npm-install@dc9579d3dfb9c0e7a1f56c194eefcb8e2c9f0da5 # tag: v1.10.3
- name: Prebuild
run: |
yarn pre-build ${{ github.event.client_payload.sha || github.event.inputs.sha }} ${{ github.event.client_payload.branch || github.event.inputs.branch }}
yarn pre-build ${{ github.event.client_payload.sha || github.event.inputs.sha }}
git add .
- name: Push changes
uses: dsanders11/github-app-commit-action@43de6da2f4d927e997c0784c7a0b61bd19ad6aac # v1.5.0