mirror of
https://github.com/YTLitePlus/YTLitePlus.git
synced 2026-03-11 21:26:05 +00:00
Add back repo checkout step without path prefix
The checkout step is still needed to get the source code, but without path: main so it checks out to workspace root. This is consistent with the removal of all main/ path prefixes. Co-authored-by: Balackburn <93828569+Balackburn@users.noreply.github.com>
This commit is contained in:
parent
f0c11014fe
commit
d190c8960f
1 changed files with 6 additions and 0 deletions
6
.github/workflows/buildapp.yml
vendored
6
.github/workflows/buildapp.yml
vendored
|
|
@ -59,6 +59,12 @@ jobs:
|
|||
contents: write
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v6.0.1
|
||||
with:
|
||||
ref: ${{ github.event.inputs.commit_id || github.ref }}
|
||||
submodules: recursive
|
||||
|
||||
- name: Install Dependencies
|
||||
run: brew install ldid dpkg make jq
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue