Skip to content

Commit 9cae840

Browse files
committed
rename
1 parent f38344d commit 9cae840

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/python-release.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
- name: Build wheels
124124
uses: pypa/[email protected]
125125
with:
126-
output-dir: svn_wheelhouse
126+
output-dir: wheelhouse
127127
config-file: "pyproject.toml"
128128
env:
129129
# Ignore 32 bit architectures
@@ -140,13 +140,13 @@ jobs:
140140

141141
- name: Add source distribution
142142
if: startsWith(matrix.os, 'ubuntu')
143-
run: ls -lah dist/* && cp dist/* svn_wheelhouse/
143+
run: ls -lah dist/* && cp dist/* wheelhouse/
144144

145-
# TODO: upload to SVN, all files in pypi_wheelhouse
145+
# TODO: upload to SVN
146146
- uses: actions/upload-artifact@v4
147147
with:
148148
name: "svn-release-candidate-${{ matrix.os }}"
149-
path: ./svn_wheelhouse/*
149+
path: ./wheelhouse/*
150150

151151
svn_generate_checksums:
152152
name: Generate SHA512 checksums
@@ -156,20 +156,20 @@ jobs:
156156
- name: Download All SVN Artifacts
157157
uses: actions/download-artifact@v4
158158
with:
159-
path: svn_wheelhouse
159+
path: artifacts
160160
pattern: svn-release-candidate-*
161161
merge-multiple: true
162162
- name: Generate SHA512 checksums
163163
run: |
164-
cd svn_wheelhouse
164+
cd artifacts
165165
for name in $(ls pyiceberg-*.whl pyiceberg-*.tar.gz)
166166
do
167167
shasum -a 512 "${name}" > "${name}.sha512"
168168
done
169169
- uses: actions/upload-artifact@v4
170170
with:
171171
name: svn-release-candidate-sha-checksums
172-
path: ./svn_wheelhouse/*.sha512
172+
path: ./artifacts/*.sha512
173173

174174
svn_generate_signatures:
175175
name: Generate GPG Signatures
@@ -179,7 +179,7 @@ jobs:
179179
- name: Download All SVN Artifacts
180180
uses: actions/download-artifact@v4
181181
with:
182-
path: svn_wheelhouse
182+
path: artifacts
183183
pattern: svn-release-candidate-*
184184
merge-multiple: true
185185
- name: Import GPG Key
@@ -190,15 +190,15 @@ jobs:
190190
passphrase: ${{ secrets.GPG_PASSPHRASE }}
191191
- name: Generate GPG signatures
192192
run: |
193-
cd svn_wheelhouse
193+
cd artifacts
194194
for name in $(ls pyiceberg-*.whl pyiceberg-*.tar.gz)
195195
do
196196
gpg --yes --armor --output "${name}.asc" --detach-sig "${name}"
197197
done
198198
- uses: actions/upload-artifact@v4
199199
with:
200200
name: svn-release-candidate-gpg-signatures
201-
path: ./svn_wheelhouse/*.asc
201+
path: ./artifacts/*.asc
202202

203203
svn_merge_artifacts:
204204
runs-on: ubuntu-latest
@@ -253,7 +253,7 @@ jobs:
253253
- name: Build wheels
254254
uses: pypa/[email protected]
255255
with:
256-
output-dir: pypi_wheelhouse
256+
output-dir: wheelhouse
257257
config-file: "pyproject.toml"
258258
env:
259259
# Ignore 32 bit architectures
@@ -270,13 +270,13 @@ jobs:
270270

271271
- name: Add source distribution
272272
if: startsWith(matrix.os, 'ubuntu')
273-
run: ls -lah dist/* && cp dist/* pypi_wheelhouse/
273+
run: ls -lah dist/* && cp dist/* wheelhouse/
274274

275-
# TODO: upload to PyPi, all files in pypi_wheelhouse
275+
# TODO: upload to PyPi
276276
- uses: actions/upload-artifact@v4
277277
with:
278278
name: "pypi-release-candidate-${{ matrix.os }}"
279-
path: ./pypi_wheelhouse/*
279+
path: ./wheelhouse/*
280280

281281
pypi_merge_artifacts:
282282
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)