mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-01-19 06:30:53 +00:00
handle uncommon bundle name in continuous integration workflow
This commit is contained in:
parent
a46df94823
commit
83797ea77e
1 changed files with 8 additions and 2 deletions
10
.github/workflows/continuous_integration.yml
vendored
10
.github/workflows/continuous_integration.yml
vendored
|
@ -17,7 +17,8 @@ jobs:
|
|||
name: "Raze"
|
||||
}
|
||||
- {
|
||||
name: "PrBoom-Plus"
|
||||
name: "PrBoom-Plus",
|
||||
bundle: "Launcher"
|
||||
}
|
||||
|
||||
steps:
|
||||
|
@ -34,8 +35,13 @@ jobs:
|
|||
- name: Create Package
|
||||
shell: bash
|
||||
run: |
|
||||
if [ -z ${{ matrix.config.bundle }} ]; then
|
||||
BUNDLE_FILENAME=${PROJECT_NAME_LOWER}
|
||||
else
|
||||
BUNDLE_FILENAME=${{ matrix.config.bundle }}
|
||||
fi
|
||||
mkdir package
|
||||
cp -r build/${PROJECT_NAME_LOWER}/make/${PROJECT_NAME_LOWER}.app package
|
||||
cp -r "build/${PROJECT_NAME_LOWER}/make/${BUNDLE_FILENAME}.app" package
|
||||
|
||||
- name: Upload Package
|
||||
uses: actions/upload-artifact@v1
|
||||
|
|
Loading…
Reference in a new issue