diff options
| author | briaguya <70942617+briaguya-ai@users.noreply.github.com> | 2024-06-08 16:53:14 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-08 21:53:14 +0100 |
| commit | 84b9b4218a4d659bef5fa506efe4f884baecc21f (patch) | |
| tree | f23eb46474a50f4d993059a7adbc35ef172b4a6e /.github | |
| parent | 4b36181ee23d3b978be543bdec02630bd6df5ad8 (diff) | |
ci: wget sdl from gh release (#677)
fix that worked from https://github.com/HarbourMasters/2ship2harkinian/pull/676 but pointing to the right branch
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b31a5bf66..02931a149 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -130,7 +130,7 @@ jobs: run: | export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" if [ ! -d "SDL2-2.28.5" ]; then - wget https://www.libsdl.org/release/SDL2-2.28.5.tar.gz + wget https://github.com/libsdl-org/SDL/releases/download/release-2.28.5/SDL2-2.28.5.tar.gz tar -xzf SDL2-2.28.5.tar.gz fi cd SDL2-2.28.5 @@ -261,7 +261,7 @@ jobs: run: | export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" if [ ! -d "SDL2-2.30.3" ]; then - wget https://www.libsdl.org/release/SDL2-2.30.3.tar.gz + wget https://github.com/libsdl-org/SDL/releases/download/release-2.30.3/SDL2-2.30.3.tar.gz tar -xzf SDL2-2.30.3.tar.gz fi cd SDL2-2.30.3 |
