Skip to content

Commit 5d4a3d5

Browse files
committed
Support alpha versions for all wheels
1 parent 96b4ad8 commit 5d4a3d5

15 files changed

+40
-14
lines changed

.github/workflows/ci-bcf-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: |
3333
pip install build
3434
cd src/bcf &&
35-
make dist
35+
make dist IS_STABLE=TRUE
3636
- name: Publish a Python distribution to PyPI
3737
uses: ortega2247/pypi-upload-action@master
3838
with:

.github/workflows/ci-bsdd-pypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
pip install build
2828
cd src/bsdd &&
29-
make dist
29+
make dist IS_STABLE=TRUE
3030
- name: Publish a Python distribution to PyPI
3131
uses: ortega2247/pypi-upload-action@master
3232
with:

.github/workflows/ci-ifc4d-pypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
pip install build
2828
cd src/ifc4d &&
29-
make dist
29+
make dist IS_STABLE=TRUE
3030
- name: Publish a Python distribution to PyPI
3131
uses: ortega2247/pypi-upload-action@master
3232
with:

.github/workflows/ci-ifc5d-pypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
pip install build
2828
cd src/ifc5d &&
29-
make dist
29+
make dist IS_STABLE=TRUE
3030
- name: Publish a Python distribution to PyPI
3131
uses: ortega2247/pypi-upload-action@master
3232
with:

.github/workflows/ci-ifccityjson-pypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
pip install build
2828
cd src/ifccityjson &&
29-
make dist
29+
make dist IS_STABLE=TRUE
3030
- name: Publish a Python distribution to PyPI
3131
uses: ortega2247/pypi-upload-action@master
3232
with:

.github/workflows/ci-ifcclash-pypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
pip install build
2828
cd src/ifcclash &&
29-
make dist
29+
make dist IS_STABLE=TRUE
3030
- name: Publish a Python distribution to PyPI
3131
uses: ortega2247/pypi-upload-action@master
3232
with:

.github/workflows/ci-ifccsv-pypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
pip install build
2828
cd src/ifccsv &&
29-
make dist
29+
make dist IS_STABLE=TRUE
3030
- name: Publish a Python distribution to PyPI
3131
uses: ortega2247/pypi-upload-action@master
3232
with:

.github/workflows/ci-ifcdiff-pypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
pip install build
2828
cd src/ifcdiff &&
29-
make dist
29+
make dist IS_STABLE=TRUE
3030
- name: Publish a Python distribution to PyPI
3131
uses: ortega2247/pypi-upload-action@master
3232
with:

.github/workflows/ci-ifcfm-pypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
pip install build
2828
cd src/ifcfm &&
29-
make dist
29+
make dist IS_STABLE=TRUE
3030
- name: Publish a Python distribution to PyPI
3131
uses: ortega2247/pypi-upload-action@master
3232
with:

.github/workflows/ci-ifcopenshell-python-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
pip install build
5858
cp -r src/ifcopenshell-python src/ifcopenshell_${{ matrix.config.short_name }}_${{ matrix.pyver }} &&
5959
cd src/ifcopenshell_${{ matrix.config.short_name }}_${{ matrix.pyver }} &&
60-
make dist PLATFORM=${{ matrix.config.short_name }} PYVERSION=${{ matrix.pyver }}
60+
make dist PLATFORM=${{ matrix.config.short_name }} PYVERSION=${{ matrix.pyver }} IS_STABLE=TRUE
6161
- name: Publish a Python distribution to PyPI
6262
uses: ortega2247/pypi-upload-action@master
6363
with:

0 commit comments

Comments
 (0)