Skip to content

Commit 33491a5

Browse files
committed
chore: use bash for package_target.py
1 parent e6e01de commit 33491a5

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,14 @@ jobs:
8383
# Prepare and Upload Artifact
8484
- name: Prepare and Upload Artifact
8585
id: prepare_artifact
86+
shell: bash
8687
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 }}`
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 }}
9394
- uses: actions/upload-artifact@v4
9495
with:
9596
name: ${{ steps.prepare_artifact.outputs.artifact_name }}
@@ -106,9 +107,6 @@ jobs:
106107
with:
107108
path: artifacts
108109

109-
- name: Display structure of downloaded files
110-
run: ls -R artifacts
111-
112110
- name: Copy hamdata.ini to Windows artifact
113111
run: |
114112
mkdir -p artifacts/AG-server-ci-windows/addons/amxmodx/configs

0 commit comments

Comments
 (0)