Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Signed-off-by: Artem Senichev <[email protected]>
  • Loading branch information
artemsen committed Jan 14, 2024
1 parent 9edc101 commit 3315568
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,20 +44,20 @@ jobs:
- name: Install
id: install
env:
INSTALL_PATH: ${{ steps.build.env.BUILD_PATH }}/install/PipeWalker-${{ steps.version.outputs.VERSION }}
INSTALL_PATH: ${{ env.BUILD_PATH }}/install/PipeWalker-${{ steps.version.outputs.VERSION }}
run: |
mkdir ${{ steps.install.env.INSTALL_PATH }}
mkdir ${{ env.INSTALL_PATH }}
cp ${{ env.BUILD_PATH }}/pipewalker.exe \
cp /usr/lib/gcc/x86_64-w64-mingw32/10-win32/libgcc_s_seh-1.dll \
cp /usr/lib/gcc/x86_64-w64-mingw32/10-win32/libstdc++-6.dll \
cp /usr/x86_64-w64-mingw32/bin/SDL2.dll \
cp /usr/x86_64-w64-mingw32/bin/SDL2_image.dll \
${{ steps.install.env.INSTALL_PATH }}
x86_64-w64-mingw32-strip --strip-all ${{ steps.install.env.INSTALL_PATH }}/*
cp -r data ${{ steps.install.env.INSTALL_PATH }}
${{ env.INSTALL_PATH }}
x86_64-w64-mingw32-strip --strip-all ${{ env.INSTALL_PATH }}/*
cp -r data ${{ env.INSTALL_PATH }}
- name: Upload dist
uses: actions/upload-artifact@v4
with:
name: pipewalker-${{ steps.version.outputs.VERSION }}-win64.zip
path: ${{ steps.install.env.INSTALL_PATH }}
path: ${{ env.INSTALL_PATH }}

0 comments on commit 3315568

Please sign in to comment.