From 2040aefea5346fc8746fd6159cfc44115ed5d992 Mon Sep 17 00:00:00 2001 From: roomrys <> Date: Sat, 9 Sep 2023 09:16:25 -0700 Subject: [PATCH] Run manual build w/o pip upload --- .conda/meta.yaml | 2 +- .conda_mac/meta.yaml | 2 +- .github/workflows/build_manual.yml | 17 +++++++++-------- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/.conda/meta.yaml b/.conda/meta.yaml index e16eb480d..2b3336cbd 100644 --- a/.conda/meta.yaml +++ b/.conda/meta.yaml @@ -16,7 +16,7 @@ source: path: ../ build: - number: 12 + number: 0 requirements: host: diff --git a/.conda_mac/meta.yaml b/.conda_mac/meta.yaml index db2f23215..8ee3ef901 100644 --- a/.conda_mac/meta.yaml +++ b/.conda_mac/meta.yaml @@ -16,7 +16,7 @@ about: summary: {{ data.get('description') }} build: - number: 5 + number: 0 source: path: ../ diff --git a/.github/workflows/build_manual.yml b/.github/workflows/build_manual.yml index ab689342d..608ba1be2 100644 --- a/.github/workflows/build_manual.yml +++ b/.github/workflows/build_manual.yml @@ -10,6 +10,7 @@ on: - '.conda_mac/meta.yaml' branches: - develop + - liezl/1.3.2-bump jobs: build: @@ -59,14 +60,14 @@ jobs: run: | python setup.py bdist_wheel - # Upload pip wheel (Ubuntu) - - name: Upload pip wheel (Ubuntu) - if: matrix.os == 'ubuntu-22.04' - env: - PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} - shell: bash -l {0} - run: | - twine upload -u __token__ -p "$PYPI_TOKEN" dist/* --non-interactive --skip-existing --disable-progress-bar + # # Upload pip wheel (Ubuntu) + # - name: Upload pip wheel (Ubuntu) + # if: matrix.os == 'ubuntu-22.04' + # env: + # PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} + # shell: bash -l {0} + # run: | + # twine upload -u __token__ -p "$PYPI_TOKEN" dist/* --non-interactive --skip-existing --disable-progress-bar # Build conda package (Ubuntu) - name: Build conda package (Ubuntu)