File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 48
48
- name : ZipBuildingTest
49
49
run : |
50
50
mkdir -p zip_output_dir
51
- sh -x scripts/build_zip.sh zip_output_dir "${{ github.event.inputs.custom_spec_repos || 'https://github.com/firebase/SpecsStaging.git' }}"
51
+ sh -x scripts/build_zip.sh zip_output_dir "${{ github.event.inputs.custom_spec_repos || 'https://github.com/firebase/SpecsStaging.git,https://github.com/firebase/SpecsDev.git ' }}"
52
52
- uses : actions/upload-artifact@v1
53
53
with :
54
54
name : Firebase-actions-dir
Original file line number Diff line number Diff line change @@ -28,8 +28,12 @@ OUTPUT_DIR="$REPO/$1"
28
28
29
29
CUSTOM_SPEC_REPOS=" $2 "
30
30
31
+ source_repo=()
32
+ IFS=' ,'
33
+ read -a specrepo <<< " ${CUSTOM_SPEC_REPOS}"
34
+
31
35
cd ReleaseTooling
32
36
swift run zip-builder --keep-build-artifacts --update-pod-repo \
33
37
--local-podspec-path " ${REPO} " \
34
38
--enable-carthage-build --output-dir " ${OUTPUT_DIR} " \
35
- --custom-spec-repos " ${CUSTOM_SPEC_REPOS } "
39
+ --custom-spec-repos " ${specrepo[@] } "
You can’t perform that action at this time.
0 commit comments