Skip to content

Commit

Permalink
CI: Fix x64 Qt files not being copied for release artifacts
Browse files Browse the repository at this point in the history
The previous fix attempt fixed the CI failure, but also didn't copy the
necessary x64 files. Hopefully this corrects that.
  • Loading branch information
RytoEX committed Sep 4, 2024
1 parent ab17571 commit 077abdb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -623,9 +623,10 @@ jobs:
zip -r windows-deps-${{ steps.metadata.outputs.version }}-${arch}.zip -- *
mv windows-deps-${{ steps.metadata.outputs.version }}-${arch}.zip ${GITHUB_WORKSPACE}
if [[ -f ${GITHUB_WORKSPACE}/qt6-windows-${arch}-!(*-@(Debug|RelWithDebInfo|Release|MinSizeRel))/*.zip ]]; then
mv ${GITHUB_WORKSPACE}/qt6-windows-${arch}-!(*-@(Debug|RelWithDebInfo|Release|MinSizeRel))/*.zip ${GITHUB_WORKSPACE}
fi
files=("${GITHUB_WORKSPACE}"/qt6-windows-"${arch}"-!(*-@(Debug|RelWithDebInfo|Release|MinSizeRel))/*.zip)
for artifact in ${files}; do
mv ${artifact} ${GITHUB_WORKSPACE}
done
popd > /dev/null
done
Expand Down

0 comments on commit 077abdb

Please sign in to comment.