Skip to content

[ref] major repo refactor for cleaning up and pip install #2

[ref] major repo refactor for cleaning up and pip install

[ref] major repo refactor for cleaning up and pip install #2

Workflow file for this run

name: nightly release
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8" ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Build wheels
run: pip3 install setuptools build --upgrade && python -m build --wheel
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: ./dist/*.whl
- name: Update Nightly Release
uses: andelf/nightly-release@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: nightly
name: 'Nightly Release'
prerelease: true
body: 'Nightly Release for Each Push'
files: |
./dist/*.whl