We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81c66a8 commit 44e2445Copy full SHA for 44e2445
1 file changed
.github/workflows/multi-platform.yml
@@ -30,12 +30,19 @@ jobs:
30
runs-on: ${{ matrix.config.os }}
31
32
steps:
33
- - uses: actions/checkout@v4
+ - name: Checkout
34
+ uses: actions/checkout@v4
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
+ - name: Own The Libs (Checkout)
+ 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
46
47
- name: Build the mod
48
uses: geode-sdk/build-geode-mod@main
0 commit comments