Skip to content

Commit 18808aa

Browse files
committed
change name
1 parent c25e57f commit 18808aa

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

.github/workflows/nightly-pypi-build.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,13 @@ jobs:
2828
nightly-build:
2929
uses: ./.github/workflows/pypi-build-artifacts.yml # Reference the PyPI build workflow
3030
with:
31-
VERSION: "0.0.0+$(date +'%Y%m%d')-nightly" # Generate nightly version
31+
VERSION: "0.0.0" # Generate nightly version
3232
RC: "0" # Reset RC for nightly builds
3333

3434
testpypi-publish:
3535
name: Publish to TestPypi
36-
needs: nightly-build
36+
needs:
37+
- nightly-build
3738
runs-on: ubuntu-latest
3839
environment:
3940
name: testpypi
@@ -43,15 +44,15 @@ jobs:
4344
id-token: write # IMPORTANT: mandatory for trusted publishing
4445

4546
steps:
46-
- name: Download all the dists
47+
- name: Download all the artifacts
4748
uses: actions/download-artifact@v4
4849
with:
49-
path: artifacts
50+
merge-multiple: true
51+
path: dist/
5052
- name: List downloaded artifacts
51-
run: ls -R artifacts
53+
run: ls -R dist/
5254
- name: Publish to TestPyPI
5355
uses: pypa/gh-action-pypi-publish@release/v1
5456
with:
5557
repository-url: https://test.pypi.org/legacy/
5658
skip-existing: true
57-
packages-dir: artifacts

.github/workflows/pypi-build-artifacts.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ jobs:
3535
runs-on: ${{ matrix.os }}
3636
strategy:
3737
matrix:
38-
os: [ ubuntu-22.04, windows-2022, macos-13, macos-14, macos-15 ]
38+
os: [ macos-14, macos-15 ]
39+
# os: [ ubuntu-22.04, windows-2022, macos-13, macos-14, macos-15 ]
3940

4041
steps:
4142
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717
[tool.poetry]
18-
name = "pyiceberg"
18+
name = "pyiceberg-kevinliu"
1919
version = "0.9.0"
2020
readme = "README.md"
2121
homepage = "https://py.iceberg.apache.org/"

0 commit comments

Comments
 (0)