c56bef871b
Sync docs with Docusaurus / sync (push) Waiting to run
Tests / Check if changed (push) Waiting to run
Tests / format (push) Blocked by required conditions
Tests / check-imports (push) Blocked by required conditions
Tests / Unit / macos-latest (push) Blocked by required conditions
Tests / Unit / ubuntu-latest (push) Blocked by required conditions
Tests / Unit / windows-latest (push) Blocked by required conditions
Tests / mypy (push) Blocked by required conditions
Tests / Integration / ubuntu-latest (push) Blocked by required conditions
Tests / Integration / macos-latest (push) Blocked by required conditions
Tests / Integration / windows-latest (push) Blocked by required conditions
Tests / notify-slack-on-failure (push) Blocked by required conditions
Tests / Mark tests as completed (push) Blocked by required conditions
Docker image release / Build base image (push) Waiting to run
CodeQL / Analyze (python) (push) Has been cancelled
Update Platform Components Table / update (push) Has been cancelled
52 lines
1.5 KiB
YAML
52 lines
1.5 KiB
YAML
name: Nightly pre-release on PyPI
|
||
|
||
on:
|
||
schedule:
|
||
# Run at midnight UTC every day
|
||
- cron: "0 0 * * *"
|
||
workflow_dispatch:
|
||
|
||
env:
|
||
HATCH_VERSION: "1.16.5"
|
||
|
||
permissions:
|
||
contents: read
|
||
|
||
jobs:
|
||
nightly-release:
|
||
runs-on: ubuntu-latest
|
||
environment: pypi
|
||
permissions:
|
||
id-token: write
|
||
# Always build from main for consistency (scheduled and manual runs)
|
||
steps:
|
||
- name: Checkout main
|
||
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
||
with:
|
||
persist-credentials: false
|
||
ref: main
|
||
fetch-depth: 1
|
||
|
||
# Reads VERSION.txt, strips any -rcN suffix, and appends .devYYYYMMDDHHMMSS
|
||
# (e.g. 2.25.0.dev20250217000000) so each run gets a unique, PEP 440–valid pre-release version.
|
||
- name: Set nightly version
|
||
id: set-version
|
||
run: |
|
||
BASE_VERSION=$(sed 's/-rc[0-9]*$//' VERSION.txt)
|
||
TIMESTAMP=$(date +%Y%m%d%H%M%S)
|
||
NIGHTLY_VERSION="${BASE_VERSION}.dev${TIMESTAMP}"
|
||
echo "version=${NIGHTLY_VERSION}" >> "$GITHUB_OUTPUT"
|
||
echo "${NIGHTLY_VERSION}" > VERSION.txt
|
||
echo "Building haystack-ai version: ${NIGHTLY_VERSION}"
|
||
|
||
- name: Install Hatch
|
||
run: |
|
||
python -m pip install --upgrade pip
|
||
pip install hatch==${{ env.HATCH_VERSION }} --uploaded-prior-to=P1D
|
||
|
||
- name: Build Haystack
|
||
run: hatch build
|
||
|
||
- name: Publish to PyPI
|
||
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
|