Skip to content

Commit

Permalink
Run upload test on PR push
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Wittgen committed May 22, 2024
1 parent 665bb4f commit 425202d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
pypi_sdist_build:
runs-on: ubuntu-latest
needs: [build_and_test]
if: startsWith(github.ref, 'refs/tags/')
#if: startsWith(github.ref, 'refs/tags/')

Check warning on line 42 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / call-workflow / yamllint

42:6 [comments] missing starting space in comment
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
os: ["ubuntu-latest", "macos-11"]
runs-on: ${{ matrix.os }}
needs: [build_and_test]
if: startsWith(github.ref, 'refs/tags/')
#if: startsWith(github.ref, 'refs/tags/')

Check warning on line 73 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / call-workflow / yamllint

73:6 [comments] missing starting space in comment
env:
CIBW_BUILD: "cp3{8,9,10,11,12}-{manylinux_x86_64,manylinux_aarch64,macosx_arm64,macosx_x86_64}"
CIBW_ARCHS_MACOS: "x86_64 arm64"
Expand Down Expand Up @@ -118,6 +118,7 @@ jobs:
pipy_upload:
needs: [pypi_sdist_build, pypi_wheel_build]
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit 425202d

Please sign in to comment.