Skip to content

Commit

Permalink
undo debug
Browse files Browse the repository at this point in the history
  • Loading branch information
jalbrekt85 committed Jan 3, 2024
1 parent 2093634 commit 437a8a0
Showing 1 changed file with 46 additions and 46 deletions.
92 changes: 46 additions & 46 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,45 +49,45 @@ jobs:
name: wheels-linux
path: dist/*.whl

# windows:
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v3
# - name: Install OpenSSL
# run: choco install openssl
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install OpenSSL
run: choco install openssl

# - name: Build and Prepare Wheels
# uses: messense/maturin-action@v1
# with:
# command: build
# args: --release -o dist --find-interpreter
# - name: List built wheels
# run: ls dist/
# - name: Upload wheels
# uses: actions/upload-artifact@v2
# with:
# name: wheels-windows
# path: dist
- name: Build and Prepare Wheels
uses: messense/maturin-action@v1
with:
command: build
args: --release -o dist --find-interpreter
- name: List built wheels
run: ls dist/
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
name: wheels-windows
path: dist

# macos:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v3
# - name: Install OpenSSL
# run: brew install openssl
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install OpenSSL
run: brew install openssl

# - name: Build and Prepare Wheels
# uses: messense/maturin-action@v1
# with:
# command: build
# args: --release -o dist --universal2 --find-interpreter
# - name: List built wheels
# run: ls dist/
# - name: Upload wheels
# uses: actions/upload-artifact@v2
# with:
# name: wheels-macos
# path: dist
- name: Build and Prepare Wheels
uses: messense/maturin-action@v1
with:
command: build
args: --release -o dist --universal2 --find-interpreter
- name: List built wheels
run: ls dist/
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
name: wheels-macos
path: dist

release:
name: Release
Expand All @@ -98,16 +98,16 @@ jobs:
uses: actions/download-artifact@v2
with:
name: wheels-linux
# - name: Download all wheels (Windows)
# uses: actions/download-artifact@v2
# with:
# name: wheels-windows
# - name: Download all wheels (macOS)
# uses: actions/download-artifact@v2
# with:
# name: wheels-macos
# - name: List all downloaded wheels
# run: ls
- name: Download all wheels (Windows)
uses: actions/download-artifact@v2
with:
name: wheels-windows
- name: Download all wheels (macOS)
uses: actions/download-artifact@v2
with:
name: wheels-macos
- name: List all downloaded wheels
run: ls
- name: Publish to PyPI
uses: messense/maturin-action@v1
env:
Expand Down

0 comments on commit 437a8a0

Please sign in to comment.