We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74fc95c commit 353003aCopy full SHA for 353003a
1 file changed
.github/workflows/ci-internal.yml
@@ -95,6 +95,10 @@ jobs:
95
- name: Install node package, `unity-verify-code`
96
run: npm install --global https://github.com/sierpinskid/unity-verify-code
97
98
+ - name: Install 7z (for extracting .pkg files on Linux)
99
+ if: ${{ inputs.os }} == 'ubuntu-latest'
100
+ run: sudo apt-get install -y p7zip-full
101
+
102
- name: Download Unity & Modules
103
shell: bash
104
run: |
@@ -206,7 +210,7 @@ jobs:
206
210
if [[ ${{ inputs.os }} == 'macos-latest' ]]; then
207
211
sudo installer -package ~/UnityIosModule.pkg -target /
208
212
elif [[ ${{ inputs.os }} == 'ubuntu-latest' ]]; then
209
- sudo installer -package ~/UnityIosModule.pkg -target /opt/Editor
213
+ 7z x -o/opt/Editor ~/UnityAndroidModule.pkg
214
fi
215
216
- name: Create Test Results dir
0 commit comments