Commit c7c157c2 authored by mercury233's avatar mercury233

fix

parent 34c242d2
...@@ -90,6 +90,12 @@ jobs: ...@@ -90,6 +90,12 @@ jobs:
7z x ${{ steps.sqlite.outputs.filepath }} 7z x ${{ steps.sqlite.outputs.filepath }}
move sqlite-amalgamation-3490100 sqlite3 move sqlite-amalgamation-3490100 sqlite3
- name: Create miniaudio directory
run: |
cd miniaudio
mkdir external
cd ..
- name: Download ogg - name: Download ogg
id: ogg id: ogg
uses: mercury233/action-cache-download-file@v1.0.0 uses: mercury233/action-cache-download-file@v1.0.0
...@@ -99,7 +105,7 @@ jobs: ...@@ -99,7 +105,7 @@ jobs:
- name: Extract ogg - name: Extract ogg
run: | run: |
tar xf ${{ steps.ogg.outputs.filepath }} tar xf ${{ steps.ogg.outputs.filepath }}
move libogg-1.3.5 miniaudio/ogg move libogg-1.3.5 miniaudio/external/ogg
- name: Download opus - name: Download opus
id: opus id: opus
...@@ -110,7 +116,7 @@ jobs: ...@@ -110,7 +116,7 @@ jobs:
- name: Extract opus - name: Extract opus
run: | run: |
tar xf ${{ steps.opus.outputs.filepath }} tar xf ${{ steps.opus.outputs.filepath }}
move opus-1.5.2 miniaudio/opus move opus-1.5.2 miniaudio/external/opus
- name: Download opusfile - name: Download opusfile
id: opusfile id: opusfile
...@@ -121,7 +127,7 @@ jobs: ...@@ -121,7 +127,7 @@ jobs:
- name: Extract opusfile - name: Extract opusfile
run: | run: |
tar xf ${{ steps.opusfile.outputs.filepath }} tar xf ${{ steps.opusfile.outputs.filepath }}
move opusfile-0.12 miniaudio/opusfile move opusfile-0.12 miniaudio/external/opusfile
- name: Download vorbis - name: Download vorbis
id: vorbis id: vorbis
...@@ -132,7 +138,7 @@ jobs: ...@@ -132,7 +138,7 @@ jobs:
- name: Extract vorbis - name: Extract vorbis
run: | run: |
tar xf ${{ steps.vorbis.outputs.filepath }} tar xf ${{ steps.vorbis.outputs.filepath }}
move libvorbis-1.3.7 miniaudio/vorbis move libvorbis-1.3.7 miniaudio/external/vorbis
- name: Download irrlicht - name: Download irrlicht
run: | run: |
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment