Skip to content

Commit

Permalink
yml
Browse files Browse the repository at this point in the history
  • Loading branch information
homerjed committed Jan 10, 2025
1 parent 23f43fa commit a2705af
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 6 deletions.
28 changes: 23 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,33 @@ jobs:
distributions/*.tar.gz
distributions/*.whl
- name: Create 📂 GitHub Release 🚀
# - name: Create 📂 GitHub Release 🚀
# env:
# GITHUB_TOKEN: ${{ github.token }}
# run: gh release --repo="${{ github.repository }}" create "${{ github.ref_name }}"

# - name: Upload 📤 distributions 📦 and signatures 🔏 to GitHub Release 🚀
# env:
# GITHUB_TOKEN: ${{ github.token }}
# run: gh release --repo="${{ github.repository }}" upload "${{ github.ref_name }}" distributions/**
- name: Create GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
run: gh release --repo="${{ github.repository }}" create "${{ github.ref_name }}"

- name: Upload 📤 distributions 📦 and signatures 🔏 to GitHub Release 🚀
run: >-
gh release create
'${{ github.ref_name }}'
--repo '${{ github.repository }}'
--notes ""
- name: Upload artifact signatures to GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
run: gh release --repo="${{ github.repository }}" upload "${{ github.ref_name }}" distributions/**
# Upload to GitHub Release using the `gh` CLI.
# `dist/` contains the built packages, and the
# sigstore-produced signatures and certificates.
run: >-
gh release upload
'${{ github.ref_name }}' distributions/**
--repo '${{ github.repository }}'
publish-to-testpypi:
name: Publish Python 🐍 distribution 📦 to TestPyPI
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "sbiax"
version = "0.0.31"
version = "0.0.32"
description = "Fast, parallel and lightweight simulation-based inference in JAX."
readme = "README.md"
requires-python =">=3.10"
Expand Down

0 comments on commit a2705af

Please sign in to comment.