Skip to content

Commit a549441

Browse files
committed
fix(ci): not uploading artifacts due to path mismatch
1 parent ee1622a commit a549441

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release-tamagotchi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
uses: actions/upload-artifact@v4
131131
with:
132132
name: ${{ env.BUNDLE_NAME }}
133-
path: bundle/${{ env.BUNDLE_NAME }}
133+
path: apps/stage-tamagotchi/bundle/${{ env.BUNDLE_NAME }}
134134

135135
# ---------
136136
# Workflow Dispatch only
@@ -158,13 +158,13 @@ jobs:
158158
uses: actions/upload-artifact@v4
159159
with:
160160
name: ${{ env.BUNDLE_NAME }}
161-
path: bundle/${{ env.BUNDLE_NAME }}
161+
path: apps/stage-tamagotchi/bundle/${{ env.BUNDLE_NAME }}
162162

163163
- name: Upload To GitHub Releases (Manual + Overwrite Release)
164164
if: ${{ github.event_name == 'workflow_dispatch' && !inputs.build_only && !inputs.artifacts_only }}
165165
uses: softprops/action-gh-release@v2
166166
with:
167-
files: bundle/${{ env.PRODUCT_NAME }}_*
167+
files: apps/stage-tamagotchi/bundle/${{ env.PRODUCT_NAME }}_*
168168
append_body: true
169169
tag_name: ${{ inputs.tag }}
170170

@@ -181,5 +181,5 @@ jobs:
181181
if: ${{ github.event_name == 'release' }}
182182
uses: softprops/action-gh-release@v2
183183
with:
184-
files: bundle/${{ env.PRODUCT_NAME }}_*
184+
files: apps/stage-tamagotchi/bundle/${{ env.PRODUCT_NAME }}_*
185185
append_body: true

0 commit comments

Comments
 (0)