Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ jobs:

build-vegafusion-python-osx-64:
if: inputs.build-all-platforms
runs-on: macos-13
runs-on: macos-15-intel
steps:
- name: Check out repository code
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:

build-vegafusion-python-osx-arm64:
if: inputs.build-all-platforms
runs-on: macos-14
runs-on: macos-15
steps:
- name: Check out repository code
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:

permissions:
contents: read
actions: write

jobs:
build-and-test:
Expand All @@ -14,3 +15,4 @@ jobs:
build-all-platforms: false
permissions:
contents: read
actions: write
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,29 @@ jobs:
contents: read
actions: write

attach-wheels-to-release:
name: Attach wheels to GitHub Release
runs-on: ubuntu-latest
needs: [build-and-test]
permissions:
contents: write
actions: read
steps:
- name: Download all wheel artifacts
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
with:
pattern: python-wheels-*
path: wheels/
merge-multiple: true
- name: List downloaded wheels
run: ls -lR wheels/
- name: Upload wheels to release
env:
GH_TOKEN: ${{ github.token }}
GH_REPO: ${{ github.repository }}
run: |
gh release upload ${{ github.ref_name }} wheels/* --clobber

publish-to-pypi:
name: Publish Python wheels to PyPI
runs-on: ubuntu-latest
Expand Down