Files
kuberay-images/.gitea/workflows/publish-ray-serve.yaml
Billy D. e497fe110d
Some checks failed
Build and Publish ray-serve-apps / lint (push) Successful in 1m32s
Build and Publish ray-serve-apps / publish (push) Failing after 2m15s
ci: use internal cluster service URL for PyPI upload
2026-02-02 12:14:01 -05:00

104 lines
2.8 KiB
YAML

name: Build and Publish ray-serve-apps
on:
push:
branches:
- main
paths:
- 'ray-serve/**'
- '.gitea/workflows/publish-ray-serve.yaml'
pull_request:
branches:
- main
paths:
- 'ray-serve/**'
workflow_dispatch:
env:
NTFY_URL: http://ntfy.observability.svc.cluster.local:80
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install ruff
run: pip install ruff
- name: Lint with ruff
run: |
cd ray-serve
ruff check .
ruff format --check .
publish:
needs: lint
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install build tools
run: pip install build twine
- name: Build package
run: |
cd ray-serve
python -m build
- name: Publish to Gitea PyPI
env:
TWINE_USERNAME: ${{ secrets.REGISTRY_USER }}
TWINE_PASSWORD: ${{ secrets.REGISTRY_TOKEN }}
run: |
cd ray-serve
# Use internal cluster service URL directly - no SSL, no auth proxy
for file in dist/*.whl dist/*.tar.gz; do
if [ -f "$file" ]; then
echo "Uploading $file..."
response=$(curl -s -w "\n%{http_code}" -X POST \
-u "$TWINE_USERNAME:$TWINE_PASSWORD" \
-F "content=@$file" \
"http://gitea-http.gitea.svc.cluster.local:3000/api/packages/daviestechlabs/pypi/upload")
http_code=$(echo "$response" | tail -n1)
body=$(echo "$response" | sed '$d')
echo "Response: $body"
echo "HTTP Code: $http_code"
if [ "$http_code" != "201" ] && [ "$http_code" != "200" ]; then
echo "Upload failed with HTTP $http_code"
exit 1
fi
fi
done
- name: Notify on success
if: success()
run: |
curl -s -X POST "${{ env.NTFY_URL }}/gitea-ci" \
-H "Title: ray-serve-apps published" \
-H "Priority: default" \
-H "Tags: package,white_check_mark" \
-d "Published ray-serve-apps to Gitea PyPI"
- name: Notify on failure
if: failure()
run: |
curl -s -X POST "${{ env.NTFY_URL }}/gitea-ci" \
-H "Title: ray-serve-apps publish failed" \
-H "Priority: high" \
-H "Tags: package,x" \
-d "Failed to publish ray-serve-apps to Gitea PyPI"