Skip to content

Commit 439c466

Browse files
Add step to unzip Firebase SDK
Previously the directory itself would be downloaded, but now the zipped form of the directory is downloaded. Thus it needs to be unzipped.
1 parent 50b8363 commit 439c466

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/cpp-packaging.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -636,6 +636,15 @@ jobs:
636636
uses: actions/download-artifact@v2
637637
with:
638638
name: firebase_cpp_sdk.zip
639+
- name: Unzip Firebase C++ SDK
640+
shell: bash
641+
run: |
642+
ls
643+
if [ "$RUNNER_OS" == "Windows" ]; then
644+
7z x firebase_cpp_sdk.zip
645+
else
646+
unzip -q firebase_cpp_sdk.zip
647+
fi
639648
- name: Setup python
640649
uses: actions/setup-python@v2
641650
with:

0 commit comments

Comments
 (0)