Skip to content

Commit 2971478

Browse files
committed
Update
1 parent 6de110d commit 2971478

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/pypi-publish.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ name: Publish distributions to PyPI or TestPyPI
33
# TestPyPI upload is scheduled in each weekday.
44
# PyPI upload is only activated if the release is published.
55
on:
6-
schedule:
7-
- cron: '0 15 * * *'
86
release:
97
types:
108
- published
@@ -33,7 +31,7 @@ jobs:
3331
3432
- name: Publish distribution to TestPyPI
3533
# The following upload action cannot be executed in the forked repository.
36-
if: (github.event_name == 'schedule') || (github.event_name == 'release')
34+
if: github.event_name == 'release'
3735
uses: pypa/gh-action-pypi-publish@release/v1
3836
with:
3937
user: __token__

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pythonPlatform = "Darwin"
1010

1111
[tool.poetry]
1212
name = "cppygen"
13-
version = "0.1.0"
13+
version = "0.1.1"
1414
description = "A simple c++ code generator for pybind11"
1515
readme = "README.md"
1616
authors = ["Gen740 <[email protected]>"]

0 commit comments

Comments
 (0)