Skip to content

Commit ea3ed33

Browse files
committed
updated ci
1 parent 11d8b1d commit ea3ed33

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,10 @@ jobs:
9393
name: dist-wheels-${{ matrix.os }}-py3${{ matrix.python.minor }} # Unique artifact name
9494
path: dist/*
9595

96-
- name: Collect artifact name
97-
run: echo "ARTIFACT_NAMES+=dist-wheels-${{ matrix.os }}-py3${{ matrix.python.minor }} " >> $GITHUB_ENV
96+
- name: Collect artifact name
97+
run: |
98+
# prepend the old value, then our new entry
99+
echo "ARTIFACT_NAMES=${ARTIFACT_NAMES} dist-wheels-${{ matrix.os }}-py3${{ matrix.python.minor }} " >> $GITHUB_ENV
98100
99101
- id: collect_artifacts
100102
run: echo "::set-output name=artifact_names::${{ env.ARTIFACT_NAMES }}"

0 commit comments

Comments
 (0)