From fa9471c9cd8298dab61ece6e948ba65b6809eda7 Mon Sep 17 00:00:00 2001 From: Jake Lishman Date: Tue, 15 Oct 2024 00:25:02 +0100 Subject: [PATCH] Test deploy --- .github/workflows/wheels.yml | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index b3a5b7cf76aa..814aba660637 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -2,8 +2,8 @@ name: Deploy release artifacts on: push: - tags: - - '*' + branches: + - 'wheel-build-on-wheel-change-deploy' jobs: build-core: name: Build core @@ -12,24 +12,18 @@ jobs: artifact-prefix: "deploy-core-" default-action: "skip" wheels-tier-1: "build" - wheels-32bit: "build" sdist: "build" upload-core: name: Deploy core needs: ["build-core"] runs-on: ubuntu-latest - environment: release - permissions: - id-token: write steps: - uses: actions/download-artifact@v4 with: pattern: 'deploy-core-*' merge-multiple: true path: deploy - - uses: pypa/gh-action-pypi-publish@release/v1 - with: - packages-dir: deploy + - run: 'ls -1 ./deploy' build-others: name: Build others @@ -45,15 +39,10 @@ jobs: name: Deploy other needs: ["build-others"] runs-on: ubuntu-latest - environment: release - permissions: - id-token: write steps: - uses: actions/download-artifact@v4 with: pattern: 'deploy-others-*' merge-multiple: true path: deploy - - uses: pypa/gh-action-pypi-publish@release/v1 - with: - packages-dir: deploy + - run: 'ls -1 ./deploy'