Skip to content

Commit 7b67bb9

Browse files
committed
Create GitHub Release
1 parent 89e32d6 commit 7b67bb9

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.github/workflows/publish-package.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -123,10 +123,7 @@ jobs:
123123
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
124124
run: |
125125
gh release create "${{ github.ref_name }}" \
126-
--repo ${{ github.repository }} \ # Explicitly good practice, though often inferred
126+
--repo "${{ github.repository }}" \
127127
--title "Release ${{ github.ref_name }}" \
128128
--notes "Automated release for ${{ github.ref_name }}. Signed artifacts are attached." \
129-
# Use --generate-notes if you prefer automatic notes from PRs
130-
# --draft \ # Uncomment if you want to create a draft
131-
# --prerelease \ # Uncomment if this is a pre-release
132-
dist/* # This uploads all files from the dist/ directory as assets
129+
dist/*

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ pip install torchvinecopulib torch
6161

6262
```bash
6363
# inside project root folder
64-
pip install ./dist/torchvinecopulib-1.0.3-py3-none-any.whl
64+
pip install ./dist/torchvinecopulib-1.0.4-py3-none-any.whl
6565
# or
66-
pip install ./dist/torchvinecopulib-1.0.3.tar.gz
66+
pip install ./dist/torchvinecopulib-1.0.4.tar.gz
6767
```
6868

6969
### (Optional) [uv](https://docs.astral.sh/uv/getting-started/) for Dependency Management and Packaging

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ documentation = "https://ty-cheng.github.io/torchvinecopulib/"
1717

1818
[project]
1919
name = "torchvinecopulib"
20-
version = "1.0.3"
20+
version = "1.0.4"
2121
requires-python = ">=3.12"
2222
authors = [{ name = "Tuoyuan Cheng", email = "tuoyuan.cheng@nus.edu.sg" }]
2323
maintainers = [

0 commit comments

Comments
 (0)