Skip to content

Commit

Permalink
CI: Fix typo in the build-extension action
Browse files Browse the repository at this point in the history
Indentation-based formats were a mistake.
  • Loading branch information
YuriSizov committed Jun 6, 2024
1 parent 14b4183 commit de6d18f
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/actions/build-extension/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,27 +30,27 @@ runs:
echo "Example project build results:"
ls -l example/bin/
# Linux-specific post-build steps.

- name: Prepare the binaries (Linux)
if: ${{ env.SCONS_PLATFORM == 'linux' && inputs.finalize-binaries == 'true' }}
shell: bash
run: |
strip bin/libgdsion.linux.*
chmod +x bin/libgdsion.linux.*
# macOS-specific post-build steps.

- name: Prepare the binaries (macOS)
if: ${{ env.SCONS_PLATFORM == 'macos' && inputs.finalize-binaries == 'true' }}
shell: bash
run: |
chmod +x bin/libgdsion.macos.*
# Windows-specific post-build steps.

- name: Prepare the binaries (Windows)
if: ${{ env.SCONS_PLATFORM == 'windows' && inputs.finalize-binaries == 'true' }}
shell: powershell
run: |
Remove-Item bin/* -Include *.exp,*.lib,*.pdb -Force
# Linux-specific post-build steps.

- name: Prepare the binaries (Linux)
if: ${{ env.SCONS_PLATFORM == 'linux' && inputs.finalize-binaries == 'true' }}
shell: bash
run: |
strip bin/libgdsion.linux.*
chmod +x bin/libgdsion.linux.*
# macOS-specific post-build steps.

- name: Prepare the binaries (macOS)
if: ${{ env.SCONS_PLATFORM == 'macos' && inputs.finalize-binaries == 'true' }}
shell: bash
run: |
chmod +x bin/libgdsion.macos.*
# Windows-specific post-build steps.

- name: Prepare the binaries (Windows)
if: ${{ env.SCONS_PLATFORM == 'windows' && inputs.finalize-binaries == 'true' }}
shell: powershell
run: |
Remove-Item bin/* -Include *.exp,*.lib,*.pdb -Force

0 comments on commit de6d18f

Please sign in to comment.