Skip to content

Commit 3263b18

Browse files
committed
fix: update pipeline
1 parent 87da444 commit 3263b18

File tree

1 file changed

+16
-8
lines changed

1 file changed

+16
-8
lines changed

.github/workflows/release-template.yml

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)