Skip to content

Commit

Permalink
Test deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
jakelishman committed Oct 15, 2024
1 parent 2dd8257 commit fa9471c
Showing 1 changed file with 4 additions and 15 deletions.
19 changes: 4 additions & 15 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
name: Deploy release artifacts
on:
push:
tags:
- '*'
branches:
- 'wheel-build-on-wheel-change-deploy'
jobs:
build-core:
name: Build core
Expand All @@ -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
Expand All @@ -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'

0 comments on commit fa9471c

Please sign in to comment.