File tree Expand file tree Collapse file tree 1 file changed +16
-8
lines changed Expand file tree Collapse file tree 1 file changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -99,23 +99,31 @@ jobs:
9999 run : |
100100 git push -f -u origin upm
101101
102+ - name : 🏷️ Create UPM Tag
103+ run : |
104+ git tag $TAG upm
105+ git push origin --tags
106+ env :
107+ TAG : upm/${{ env.releaseVersion }}
108+
109+ - name : 🗃️ Cache Library
110+ uses : actions/cache@v4
111+ with :
112+ path : Library
113+ key : Library-StandaloneLinux64
114+ restore-keys : Library-
115+
102116 - name : 📦 Export Unity Package
103117 uses : game-ci/unity-builder@v4
104118 with :
105119 targetPlatform : StandaloneLinux64
106120 buildMethod : PackageExporter.ExportPackage
121+ projectPath : " ."
107122 env :
108123 UNITY_LICENSE : ${{ secrets.UNITY_LICENSE }}
109124
110125 - name : 🗂️ Upload Unity Package Artifact
111126 uses : actions/upload-artifact@v4
112127 with :
113128 name : com.mygamedevtools.scene-loader-${{ env.releaseVersion }}
114- path : com.mygamedevtools.scene-loader.unitypackage
115-
116- - name : 🏷️ Create UPM Tag
117- run : |
118- git tag $TAG upm
119- git push origin --tags
120- env :
121- TAG : upm/${{ env.releaseVersion }}
129+ path : com.mygamedevtools.scene-loader.unitypackage
You can’t perform that action at this time.
0 commit comments