Skip to content

Commit 5a27d76

Browse files
authored
Unity 2022.0
1 parent c64774f commit 5a27d76

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/package.yml

+34
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,37 @@ jobs:
7676
with:
7777
name: UnityAsyncTextureImport-Unity-2021.unitypackage
7878
path: UnityAsyncTextureImport.unitypackage
79+
package-unity-2022-3:
80+
needs: build-freeimage-android
81+
runs-on: ubuntu-latest
82+
container:
83+
image: unityci/editor:ubuntu-2022.2.0f1-base-1.0.1
84+
steps:
85+
- uses: actions/checkout@v1
86+
with:
87+
submodules: true
88+
- uses: actions/download-artifact@master
89+
with:
90+
name: arm64-v8a
91+
path: binaries/arm64-v8a
92+
- uses: actions/download-artifact@master
93+
with:
94+
name: armeabi-v7a
95+
path: binaries/armeabi-v7a
96+
- uses: actions/download-artifact@master
97+
with:
98+
name: ubuntu-16.04
99+
path: binaries/linux
100+
- name: Package
101+
run: |
102+
chmod a+x scripts/ci/activate-license.sh
103+
./scripts/ci/activate-license.sh
104+
echo "Packaging..."
105+
python scripts/export-unity-package.py /opt/unity/Editor/Unity -nodisplay
106+
shell: bash
107+
env:
108+
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE_BASE64 }}
109+
- uses: actions/upload-artifact@v3
110+
with:
111+
name: UnityAsyncTextureImport-Unity-2022.unitypackage
112+
path: UnityAsyncTextureImport.unitypackage

0 commit comments

Comments
 (0)