Skip to content

pypi-nightly

pypi-nightly #765

Workflow file for this run

# This workflow will upload a Python Package using Twine when a release is created.
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
name: pypi-nightly
on:
workflow_dispatch:
schedule:
# Everyday@1:00AM PST
- cron: "0 8 * * *"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install -r requirements.txt
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
# Remove the parallel image for Github dark mode in README.md
sed -i -e 's$<img src="https://raw.githubusercontent.com/google/pyglove/main/docs/_static/logo_dark.svg#gh-dark-mode-only" width="320px" alt="logo"></img>$$' README.md
python setup.py sdist bdist_wheel -- --nightly
twine upload dist/* --skip-existing