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 20359d9 commit 27538be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

env:
BUILD_DIR: .build
INSTALL_DIR: ${{ env.BUILD_DIR }}/install
INSTALL_DIR: .build/install

steps:
- name: Install base environment
Expand Down Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Build
run: |
meson -Dversion=${{steps.version.outputs.VERSION}} --buildtype release --cross-file .github/workflows/mingw.txt ${{ env.BUILD_DIR }}
meson -Dversion=${{ steps.version.outputs.VERSION }} --buildtype release --cross-file .github/workflows/mingw.txt ${{ env.BUILD_DIR }}
ninja -C ${{ env.BUILD_DIR }}
- name: Install
Expand All @@ -55,5 +55,5 @@ jobs:
- name: Upload dist
uses: actions/upload-artifact@v4
with:
name: pipewalker-${{steps.version.outputs.VERSION}}-win64.zip
name: pipewalker-${{ steps.version.outputs.VERSION }}-win64.zip
path: ${{ env.INSTALL_DIR }}

0 comments on commit 27538be

Please sign in to comment.