Skip to content

Commit 44e2445

Browse files
authored
Update multi-platform.yml
1 parent 81c66a8 commit 44e2445

1 file changed

Lines changed: 12 additions & 5 deletions

File tree

.github/workflows/multi-platform.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,19 @@ jobs:
3030
runs-on: ${{ matrix.config.os }}
3131

3232
steps:
33-
- uses: actions/checkout@v4
33+
- name: Checkout
34+
uses: actions/checkout@v4
3435

35-
- name: Own The Libs
36-
run: |
37-
git clone -b ${{ matrix.config.name }} --single-branch --depth=1 https://github.com/prevter/ffmpeg-libs.git
38-
7z x ffmpeg-libs/lib/lib.7z -olib
36+
- name: Own The Libs (Checkout)
37+
uses: actions/checkout@v4
38+
with:
39+
repository: prevter/ffmpeg-libs
40+
ref: ${{ matrix.config.name }}
41+
token: ${{ secrets.GITHUB_TOKEN }}
42+
path: ffmpeg-libs
43+
44+
- name: Own The Libs (Extract)
45+
run: 7z x ffmpeg-libs/lib/lib.7z -olib
3946

4047
- name: Build the mod
4148
uses: geode-sdk/build-geode-mod@main

0 commit comments

Comments
 (0)