This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
Publish e2eAIOK-sda Nightly Release to PyPI #497
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish e2eAIOK-sda Nightly Release to PyPI | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- 'e2eAIOK/version' | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
e2eaiok-release-python-pypi: | |
runs-on: ubuntu-latest | |
if: ${{ github.repository_owner == 'intel' }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.7' | |
- name: days since the commit date | |
run: | | |
: | |
timestamp=$(git log --no-walk --date=unix --format=%cd $GITHUB_SHA) | |
days=$(( ( $(date --utc +%s) - $timestamp ) / 86400 )) | |
if [ $days -eq 0 ]; then | |
echo COMMIT_TODAY=true >> $GITHUB_ENV | |
fi | |
- name: Build Package | |
run: | | |
pip install build wheel | |
release_version=$(cat e2eAIOK/version | head -1) | |
next_release_version=$(echo ${release_version} | awk -F. -v OFS=. 'NF==1{print ++$NF}; NF>1{$NF=sprintf("%0*d", length($NF), ($NF+1)); print}') | |
nightly_build_date=`date '+%Y%m%d%H'` | |
nightly_version=${next_release_version}b${nightly_build_date} | |
echo $nightly_version > e2eAIOK/version | |
python3 setup.py bdist_wheel --sda | |
- name: Upload Package | |
if: env.COMMIT_TODAY == 'true' | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} |