Skip to content

Commit 90336e9

Browse files
committed
chore: fix prepare and upload artifact step
1 parent 33491a5 commit 90336e9

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,13 @@ jobs:
8383
# Prepare and Upload Artifact
8484
- name: Prepare and Upload Artifact
8585
id: prepare_artifact
86-
shell: bash
87-
run: |
88-
python scripts/package_target.py \
89-
--build-dir ${{github.workspace}}/_build/github-actions \
90-
--install-dir ${{github.workspace}}/_build/ci-install \
91-
--artifact-dir ${{github.workspace}}/_build/ci-artifact \
92-
--target ${{ matrix.target }} \
93-
--suffix ${{ matrix.os.suffix }}
86+
run: >
87+
python scripts/package_target.py
88+
--build-dir ${{github.workspace}}/_build/github-actions
89+
--install-dir ${{github.workspace}}/_build/ci-install
90+
--artifact-dir ${{github.workspace}}/_build/ci-artifact
91+
--target ${{ matrix.target }}
92+
--suffix ${{ matrix.os.suffix }}
9493
- uses: actions/upload-artifact@v4
9594
with:
9695
name: ${{ steps.prepare_artifact.outputs.artifact_name }}

0 commit comments

Comments
 (0)