Skip to content

Commit 68384ca

Browse files
committed
check target
1 parent 9bbdad0 commit 68384ca

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/pipeline-build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
if: (vars.ENV == 'staging' || vars.ENV == 'development') && inputs.target == vars.ALL
6767
run: yarn package:stage
6868

69-
- name: Build linux packages (development)
69+
- name: Build linux packages (custom)
7070
if: inputs.target != vars.ALL
7171
run: |
7272
target=$(echo "${{inputs.target}}" | grep -oE 'build_linux_[^_ ]+' | sed 's/build_linux_//' | sort -u | paste -sd ' ' -)

.github/workflows/pipeline-build-macos.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,14 @@ jobs:
7676
mv release/mas-universal/Redis-Insight-mac-universal-mas.pkg release/Redis-Insight-mac-universal-mas.pkg
7777
7878
# handle manual builds
79-
- name: Build macos dmg (dev)
79+
- name: Build macos dmg (custom)
8080
if: inputs.target != vars.ALL
8181
run: |
8282
unset CSC_LINK
8383
target=$(echo "${{inputs.target}}" | grep -oE 'build_macos_[^ ]+' | sed 's/build_macos_/--/' | paste -sd ' ' -)
8484
85+
echo $target
86+
8587
if [ "${{ vars.ENV == 'production' }}" == "true" ]; then
8688
yarn package:prod --mac $target
8789
else

0 commit comments

Comments
 (0)