mirror of
https://github.com/zen-browser/desktop.git
synced 2026-02-17 17:08:23 +00:00
Refine APP_NAME extraction and add verification step in macOS build workflow
This commit is contained in:
@@ -110,10 +110,13 @@ jobs:
|
||||
- name: Find first .app folder name
|
||||
run: |
|
||||
cd engine/obj-x86_64-apple-darwin/dist
|
||||
export APP_NAME="$(basename $(find . -maxdepth 1 -name "Zen *.app" -type d | head -n 1))"
|
||||
export APP_NAME=$(basename "$(find . -maxdepth 1 -name "Zen *.app" -type d | head -n 1)")
|
||||
echo "APP_NAME=\"$APP_NAME\"" >> $GITHUB_ENV
|
||||
echo "APP_NAME=$APP_NAME"
|
||||
|
||||
- name: Make sure APP_NAME works
|
||||
run: ls "engine/obj-x86_64-apple-darwin/dist/${{ env.APP_NAME }}"
|
||||
|
||||
- name: Bootstrap
|
||||
run: |
|
||||
cd engine
|
||||
|
||||
Reference in New Issue
Block a user