Skip to content

Update pyPI_guide.txt #28

Update pyPI_guide.txt

Update pyPI_guide.txt #28

Workflow file for this run

# This workflow builds the current repository into a distributable package.
# For more information on using GitHub Actions for building and testing Python projects,
# visit: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
name: Build
on:
push:
branches: [ "main" ]
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: '0'
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install bumpversion build twine
# Run bash script to build the package
- name: Build Package
run: |
./build.sh