Skip to content

Commit

Permalink
Create release
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanharg committed Mar 8, 2024
1 parent d633e5f commit 6f57424
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
- name: Cache libbinaryen
id: cache-libbinaryen-save
uses: actions/cache/save@v4
if: steps.cache-libbinaryen-restore.outputs.cache-hit != 'true'
with:
path: ./binaryen/libbinaryen
key: ${{steps.cache-libbinaryen-restore.outputs.cache-primary-key}}
Expand All @@ -74,3 +75,19 @@ jobs:
with:
name: binaryen-py-sdist
path: dist/*.tar.gz

create_release:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
pattern: binaryen-py-*
path: dist
merge-multiple: true
- name: Create Release
uses: softprops/action-gh-release@v1
# if: startsWith(github.ref, 'refs/tags/')
with:
draft: true
files: dist/*
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ archs = ["AMD64"]
archs = ["x86_64"]
before-all = ["yum install wget -y", "bash ./scripts/build_libbinaryen.sh"]


[[tool.cibuildwheel.overrides]]
select = "*-musllinux*"
before-all = ["apk add wget", "bash ./scripts/build_libbinaryen.sh"]

0 comments on commit 6f57424

Please sign in to comment.