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:
99
99
run : |
100
100
git push -f -u origin upm
101
101
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
+
102
116
- name : 📦 Export Unity Package
103
117
uses : game-ci/unity-builder@v4
104
118
with :
105
119
targetPlatform : StandaloneLinux64
106
120
buildMethod : PackageExporter.ExportPackage
121
+ projectPath : " ."
107
122
env :
108
123
UNITY_LICENSE : ${{ secrets.UNITY_LICENSE }}
109
124
110
125
- name : 🗂️ Upload Unity Package Artifact
111
126
uses : actions/upload-artifact@v4
112
127
with :
113
128
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