Skip to content

Commit

Permalink
more changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bennet-Sunder committed May 16, 2024
1 parent bc8b84f commit 00c39f7
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions .github/workflows/polyglot_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,25 @@ name: Release Polyglot Piranha
on:
workflow_dispatch:
jobs:
build_linux:
runs-on: linux
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Archive production artifacts
uses: actions/upload-artifact@v2
with:
name: polyglot-piranha-package-linux
path: dist/*
build_ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Build wheel with Maturin
run: |
pip install --upgrade maturin
maturin build --release -o dist
maturin build --sdist -o dist
- name: Archive production artifacts
uses: actions/upload-artifact@v2
with:
Expand All @@ -26,13 +33,8 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Build wheel with Maturin
run: |
pip install --upgrade maturin
maturin build --release -o dist
maturin build --sdist -o dist
- name: Archive production artifacts
uses: actions/upload-artifact@v2
with:
name: polyglot-piranha-package-ubuntu-20
path: dist/*
path: dist/*

0 comments on commit 00c39f7

Please sign in to comment.