Skip to content

Commit

Permalink
CI: Specify shell for actions
Browse files Browse the repository at this point in the history
  • Loading branch information
YuriSizov committed Apr 11, 2024
1 parent ff2d686 commit 4fc0a4b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/build-extension/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ runs:
using: "composite"
steps:
- name: Build with scons
shell: sh
shell: bash
env:
SCONSFLAGS: ${{ inputs.sconsflags }}
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/actions/install-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@ runs:

- name: Verify Emscripten (Web)
if: ${{ env.SCONS_PLATFORM == 'web' }}
shell: bash
run: |
emcc -v
3 changes: 3 additions & 0 deletions .github/actions/upload-extension/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,21 @@ runs:
steps:
- name: Prepare the binaries (Linux)
if: ${{ env.SCONS_PLATFORM == 'linux' }}
shell: bash
run: |
strip bin/libgdsion.linux.*
chmod +x bin/libgdsion.linux.*
- name: Prepare the binaries (macOS)
if: ${{ env.SCONS_PLATFORM == 'macos' }}
shell: bash
run: |
strip bin/libgdsion.macos.*
chmod +x bin/libgdsion.macos.*
- name: Prepare the binaries (Windows)
if: ${{ env.SCONS_PLATFORM == 'windows' }}
shell: powershell
run: |
Remove-Item bin/* -Include *.exp,*.lib,*.pdb -Force
Expand Down

0 comments on commit 4fc0a4b

Please sign in to comment.