Skip to content

Commit

Permalink
🛳️ Create ci-cd.yaml (#47)
Browse files Browse the repository at this point in the history
* Create ci-cd.yaml
* Update ci-cd.yaml
* Change build steps as described in packaging docs
* fix the many syntax issues locally
  • Loading branch information
nickp60 authored Oct 24, 2023
1 parent 7ba2421 commit e030016
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/ci-cd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Build wheel, release and publish on new tag
on: [push, pull_request]
jobs:
build-and-test:
name: Build package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
pypi-publish:
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/isabl_cli
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Install dependencies
run: pip install wheel
- name: Build package
run: python setup.py sdist bdist_wheel
# retrieve your distributions here
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
# See https://github.com/urschrei/pyzotero/blob/master/.github/workflows/tests.yml for inspiration for building for multiple versions, etc

0 comments on commit e030016

Please sign in to comment.