Skip to content

Commit fd62abb

Browse files
authored
Redrop nightly PyPi build (#695)
## Summary #694 accidentally restored the nightly PyPi builds due to a rebase error. This PR removes it again. --- - [x] "I certify that all code in this PR is my own, except as noted below." ## Use of AI - [ ] Includes AI-assisted code completion - [ ] Includes code generated by an AI application - [ ] Includes AI-generated tests (NOTE: AI written tests should have a docstring that includes `## WRITTEN BY AI ##`)
2 parents e3247b6 + dfaa9b5 commit fd62abb

File tree

1 file changed

+0
-55
lines changed

1 file changed

+0
-55
lines changed

.github/workflows/nightly.yml

Lines changed: 0 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -15,61 +15,6 @@ jobs:
1515
python: ${{ matrix.python }}
1616
args: -m "smoke or sanity"
1717

18-
build-and-publish:
19-
needs: [tests]
20-
runs-on: ubuntu-latest
21-
strategy:
22-
matrix:
23-
python: ["3.10"]
24-
steps:
25-
- name: Checkout code
26-
uses: actions/checkout@v4
27-
with:
28-
fetch-depth: 0
29-
- name: Setup Python with UV
30-
uses: ./.github/actions/python-uv
31-
with:
32-
python-version: ${{ matrix.python }}
33-
- name: Install dependencies
34-
run: |
35-
uv pip install --system tox tox-pdm
36-
- name: Build the package
37-
run: |
38-
export GUIDELLM_BUILD_TYPE=nightly
39-
tox -e build
40-
- name: Find wheel artifact
41-
id: find-asset-whl
42-
run: |
43-
echo "::set-output name=asset::$(find dist -name '*.whl')"
44-
- name: Find tar.gz artifact
45-
id: find-asset-targz
46-
run: |
47-
echo "::set-output name=asset::$(find dist -name '*.tar.gz')"
48-
- name: Push wheel to PyPI
49-
uses: neuralmagic/nm-actions/actions/[email protected]
50-
with:
51-
username: ${{ secrets.PYPI_PUBLIC_USER }}
52-
password: ${{ secrets.PYPI_PUBLIC_AUTH }}
53-
whl: ${{ steps.find-asset-whl.outputs.asset }}
54-
- name: Push tar.gz to PyPI
55-
uses: neuralmagic/nm-actions/actions/[email protected]
56-
with:
57-
username: ${{ secrets.PYPI_PUBLIC_USER }}
58-
password: ${{ secrets.PYPI_PUBLIC_AUTH }}
59-
whl: ${{ steps.find-asset-targz.outputs.asset }}
60-
- name: Upload build artifacts
61-
id: artifact-upload
62-
uses: actions/upload-artifact@v4
63-
with:
64-
name: nightly-build-artifacts
65-
path: dist/*
66-
compression-level: 6
67-
if-no-files-found: error
68-
retention-days: 30
69-
- name: Log artifact location
70-
run: |
71-
echo "Artifacts uploaded to: ${{ steps.artifact-upload.outputs.artifact-url }}"
72-
7318
build-and-push-container:
7419
needs: [tests]
7520
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)