Skip to content

Nightly

Nightly #629

Workflow file for this run

name: Nightly
on:
schedule:
- cron: "0 0 * * *"
jobs:
build_and_publish:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install build
- name: Build the sdist
run: python -m build --sdist .
env:
BUILD_AEPPL_NIGHTLY: true
- uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.nightly_pypi_secret }}