Skip to content

Commit

Permalink
attempt ci
Browse files Browse the repository at this point in the history
  • Loading branch information
zbeucler2018 committed Feb 1, 2024
1 parent 99dcf5b commit 6415e6f
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build-publish-silicon.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: build-publish-silicon

on: push

jobs:
build:
name: Build distribution 📦
runs-on: macos-14

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Install system packages
run: brew install pkg-config [email protected] libzip qt5 capnp -yPATH

- name: Install system packages
run: echo PATH

- name: Install pypa/build
run: >-
python3 -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v3
with:
name: python-package-distributions
path: dist/

0 comments on commit 6415e6f

Please sign in to comment.