@@ -85,14 +85,15 @@ jobs:
85
85
run : |
86
86
git config --global user.name 'semantic-release-bot'
87
87
git config --global user.email '[email protected] '
88
+ git commit --amend -a --no-edit
88
89
git branch -d upm &> /dev/null || echo upm branch not found
89
90
git subtree split -P "$PACKAGE_PATH" -b upm
90
91
git checkout upm
91
92
if [[ -d "Samples" ]]; then
92
- mv "Samples" "Samples~"
93
- rm -f "Samples.meta"
93
+ mv Samples Samples~
94
+ rm -f Samples.meta
95
+ git commit --amend -a --no-edit
94
96
fi
95
- git commit --amend -a --no-edit
96
97
git push -f -u origin upm
97
98
98
99
- name : 🏷️ Create UPM Tag
@@ -138,6 +139,11 @@ jobs:
138
139
key : Library-StandaloneLinux64
139
140
restore-keys : Library-
140
141
142
+ - name : 📂 List files before export
143
+ run : |
144
+ echo "Listing files before export"
145
+ ls -R
146
+
141
147
- name : 📦 Export Unity Package
142
148
uses : game-ci/unity-builder@v4
143
149
with :
@@ -150,6 +156,11 @@ jobs:
150
156
UNITY_EMAIL : ${{ secrets.UNITY_EMAIL }}
151
157
UNITY_PASSWORD : ${{ secrets.UNITY_PASSWORD }}
152
158
159
+ - name : 📂 List files after export
160
+ run : |
161
+ echo "Listing files after export"
162
+ ls -R
163
+
153
164
- name : 🗂️ Upload Unity Package Artifact
154
165
uses : actions/upload-artifact@v4
155
166
with :
0 commit comments