Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit 5876894

Browse files
committed
Fix missing file
1 parent 5cc3755 commit 5876894

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release-cli.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ jobs:
4444
cd ${{env.OUTPUT_DIR}}
4545
zip ${{format(env.PACKAGE_ZIP_TEMPLATE, matrix.rid, steps.get-version.outputs.version)}} $(ls -a)
4646
- name: Add to release
47-
run: gh release upload ${{github.ref_name}} ${{format(env.PACKAGE_ZIP_TEMPLATE, matrix.rid, steps.get-version.outputs.version)}} --clobber
47+
run: |
48+
cd ${{env.OUTPUT_DIR}}
49+
gh release upload ${{github.ref_name}} ${{format(env.PACKAGE_ZIP_TEMPLATE, matrix.rid, steps.get-version.outputs.version)}} --clobber
4850
env:
4951
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)