Skip to content

Commit b944db4

Browse files
committed
Revert "chore(CI): upgrade deprecated upload-artifact action"
This reverts commit c69ea53.
1 parent 1b444e0 commit b944db4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test-and-publish.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,12 +163,12 @@ jobs:
163163
poetry build --format=wheel
164164
ls -lah ./dist/
165165
- name: Upload wheel as CI artifacts
166-
uses: actions/upload-artifact@v4
166+
uses: actions/upload-artifact@v3
167167
with:
168168
name: wheel-${{ github.run_id }}-${{ github.sha }}
169169
path: ./dist/
170170
- name: Upload Doxygen-generated docs as CI artifacts
171-
uses: actions/upload-artifact@v4
171+
uses: actions/upload-artifact@v3
172172
if: ${{ matrix.os == 'ubuntu-20.04' && matrix.python_version == '3.11' }} # making sure we only upload once
173173
with:
174174
name: docs-${{ github.run_id }}-${{ github.sha }}
@@ -201,7 +201,7 @@ jobs:
201201
ulimit -c unlimited
202202
fi
203203
poetry run bash ./peter-jr ./tests/js/
204-
- uses: actions/upload-artifact@v4
204+
- uses: actions/upload-artifact@v3
205205
if: ${{ matrix.os != 'windows-2019' }}
206206
# TODO (Caleb Aikens) figure out how to get Windows core dumps
207207
with:
@@ -233,7 +233,7 @@ jobs:
233233
poetry build --format=sdist
234234
ls -lah ./dist/
235235
- name: Upload sdist as CI artifacts
236-
uses: actions/upload-artifact@v4
236+
uses: actions/upload-artifact@v3
237237
with:
238238
name: wheel-${{ github.run_id }}-${{ github.sha }}
239239
path: ./dist/

0 commit comments

Comments
 (0)