diff options
| author | jakubtomsu <66876057+jakubtomsu@users.noreply.github.com> | 2024-04-11 15:42:59 +0200 |
|---|---|---|
| committer | jakubtomsu <66876057+jakubtomsu@users.noreply.github.com> | 2024-04-11 15:42:59 +0200 |
| commit | 5c63500d80083220679f7591acfc762556d577d1 (patch) | |
| tree | 917de50333acbc091c1c4f2fe5f946b6472e219a /.github | |
| parent | d66d7e1557e2565df5445bf97b0603db1d3b8da7 (diff) | |
point gh workflows to the moved build scripts
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/gen_bindings.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/gen_bindings.yml b/.github/workflows/gen_bindings.yml index 6d31a1e1..bc66e00b 100644 --- a/.github/workflows/gen_bindings.yml +++ b/.github/workflows/gen_bindings.yml @@ -173,7 +173,7 @@ jobs: rm -r ./dist/examples mv ./dist/* ./ chmod a+x ./odin - ./build_clibs_linux.sh + ./sokol/build_clibs_linux.sh - if: runner.os == 'macOS' name: prepare-macos run: | @@ -184,14 +184,14 @@ jobs: rm -r ./dist/examples mv ./dist/* ./ chmod a+x ./odin - ./build_clibs_macos.sh + ./sokol/build_clibs_macos.sh - if: runner.os == 'Windows' name: prepare-windows shell: cmd run: | curl -L https://github.com/odin-lang/Odin/releases/download/dev-2024-04/odin-windows-amd64-dev-2024-04.zip --output odin.zip unzip odin.zip - build_clibs_windows.cmd + sokol/build_clibs_windows.cmd - name: build run: | ./odin build examples/clear -debug |