Build and Publish WHL #1932
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: Build and Publish WHL | |
on: | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '0 */4 * * *' | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools wheel | |
- name: Clone python-bale-bot repository | |
run: git clone https://github.com/python-bale-bot/python-bale-bot | |
- name: Build WHL | |
run: | | |
python -m pip install --upgrade build | |
python -m build --wheel python-bale-bot | |
mv python-bale-bot/dist/*.whl python-bale-bot/dist/python_bale_bot-any-py3-none-any.whl | |
- name: Move WHL to Versions | |
run: | | |
mkdir -p versions | |
mv python-bale-bot/dist/*.whl versions | |
- name: Push WHL File | |
run: | | |
git config --global user.email "actions@github.com" | |
git config --global user.name "GitHub Actions" | |
git add versions | |
git commit -m "Generate new latest version from python-bale-bot package" | |
git push |