Skip to content

Commit 4a782fa

Browse files
committed
change name
1 parent c25e57f commit 4a782fa

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

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

Lines changed: 5 additions & 4 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,7 +44,7 @@ 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:
4950
path: artifacts
@@ -54,4 +55,4 @@ jobs:
5455
with:
5556
repository-url: https://test.pypi.org/legacy/
5657
skip-existing: true
57-
packages-dir: artifacts
58+
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

0 commit comments

Comments
 (0)