We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d46c71 commit 24521ebCopy full SHA for 24521eb
.github/workflows/macos.yml
@@ -31,9 +31,11 @@ jobs:
31
- name: Create DMG
32
run: |
33
brew install create-dmg
34
- create-dmg odamex.dmg ./build/Release/ --background ./media/macinstaller-background.png
+ mkdir -p build/artifact && cd build
35
+ cp -aR "client/odamex.app" "server/odasrv" "odalaunch/odalaunch.app" "wad/odamex.wad" "../config-samples" "../MAINTAINERS" "../CHANGELOG" "../README" "../LICENSE" artifact/
36
+ create-dmg odamex.dmg ./artifact --background ../media/macinstaller-background.png
37
- name: Upload DMG
38
uses: actions/upload-artifact@v4
39
with:
40
name: Odamex-MacOS
- path: './odamex.dmg'
41
+ path: '.artifact/odamex.dmg'
0 commit comments