Skip to content

Commit

Permalink
add qt libraries to artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
imring committed Nov 10, 2024
1 parent f9d255f commit baeb72f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,13 @@ jobs:
# Build your program with the given configuration. Note that --config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }}

- name: Copy binaries to artifact directory
run: |
cp -r ${{ github.workspace }}/.lua/lib ${{ steps.strings.outputs.build-output-dir }}/bin/
cp -r ${{ env.QT_ROOT_DIR }}/bin ${{ steps.strings.outputs.build-output-dir }}/bin/
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: build-${{ matrix.os }}-${{ matrix.build_type }}
path: |
${{ steps.strings.outputs.build-output-dir }}/bin/
${{ github.workspace }}/.lua/lib/
path: ${{ steps.strings.outputs.build-output-dir }}/bin/

0 comments on commit baeb72f

Please sign in to comment.