Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update final
Browse files Browse the repository at this point in the history
edgarriba committed Nov 10, 2023
1 parent 1bac67d commit 7cc18a5
Showing 2 changed files with 15 additions and 17 deletions.
30 changes: 14 additions & 16 deletions .github/workflows/pypi-release.yml
Original file line number Diff line number Diff line change
@@ -12,8 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
#os: [ubuntu-20.04, macos-11]
os: [ubuntu-20.04]
os: [ubuntu-20.04, macos-11]
steps:
- uses: actions/checkout@v4
with:
@@ -35,27 +34,26 @@ jobs:
CIBW_SKIP: "pp* *-musllinux_*"
# configure cibuildwheel to build native archs ('auto'), and some
# emulated ones
CIBW_ARCHS_LINUX: aarch64 # auto
CIBW_ARCHS_LINUX: auto aarch64
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl

#build_sdist:
# name: Build source distribution
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Build sdist
# run: pipx run build --sdist
# - uses: actions/upload-artifact@v3
# with:
# path: dist/*.tar.gz
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build sdist
run: pipx run build --sdist
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz

upload_pypi:
#needs: [build_wheels, build_sdist]
needs: [build_wheels]
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
#if: github.event_name == 'release' && github.event.action == 'published'
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v3
with:
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = farm_ng_core
version = 2.0.0
version = 2.0.1-dev
description =
long_description = file: README.md
long_description_content_type = text/markdown

0 comments on commit 7cc18a5

Please sign in to comment.