Skip to content

Commit

Permalink
Ensure cover image is actually included in qmod
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-r-elp committed Jul 26, 2024
1 parent db6c046 commit d818dae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/BuildQSounds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
- name: Package QMOD
run: |
cd ${GITHUB_WORKSPACE}
./QPM/qpm qmod zip -i ./build/ -i ./extern/libs/ -i ./Examples/ ${module_id}_${version}.qmod
./QPM/qpm qmod zip -i ./build/ -i ./extern/libs/ -f ./Cover.jpg -i ./Examples/ ${module_id}_${version}.qmod
- name: Upload non-debug artifact
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
- name: Package QMOD
run: |
cd ${GITHUB_WORKSPACE}
./QPM/qpm qmod zip -i ./build/ -i ./extern/libs/ -i ./Examples/ ${module_id}_${version}.qmod
./QPM/qpm qmod zip -i ./build/ -i ./extern/libs/ -f ./Cover.jpg -i ./Examples/ ${module_id}_${version}.qmod
- name: Release
uses: softprops/action-gh-release@v1
Expand Down
2 changes: 1 addition & 1 deletion buildQMOD.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ $qmod = $qmodName + ".qmod"
# Move-Item $qmod $zip -Force
# }

qpm qmod zip -i ./build/ -i ./extern/libs/ -i ./Examples/ $qmod
qpm qmod zip -i ./build/ -i ./extern/libs/ -f ./Cover.jpg -i ./Examples/ $qmod

# Compress-Archive -Path $filelist -DestinationPath $zip -Update
# Move-Item $zip $qmod -Force
Expand Down

0 comments on commit d818dae

Please sign in to comment.