Skip to content

Commit 17e5071

Browse files
committed
change name
1 parent c25e57f commit 17e5071

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

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

Lines changed: 10 additions & 9 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:
4950
path: artifacts
5051
- name: List downloaded artifacts
5152
run: ls -R artifacts
52-
- name: Publish to TestPyPI
53-
uses: pypa/gh-action-pypi-publish@release/v1
54-
with:
55-
repository-url: https://test.pypi.org/legacy/
56-
skip-existing: true
57-
packages-dir: artifacts
53+
# - name: Publish to TestPyPI
54+
# uses: pypa/gh-action-pypi-publish@release/v1
55+
# with:
56+
# repository-url: https://test.pypi.org/legacy/
57+
# skip-existing: true
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)