Skip to content

Commit 5b1d7e4

Browse files
lduchosalclaude
andcommitted
feat: add weekly scheduled publish every Monday at 9:00 UTC
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b5c4125 commit 5b1d7e4

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Publish Package
22

33
on:
4+
schedule:
5+
- cron: '0 9 * * 1' # Every Monday at 9:00 UTC
46
workflow_dispatch:
57
inputs:
68
bump_type:
@@ -41,7 +43,7 @@ jobs:
4143
git config user.email "github-actions[bot]@users.noreply.github.com"
4244
4345
- name: Publish
44-
run: sh publish.sh --ci --${{ inputs.bump_type }}
46+
run: sh publish.sh --ci --${{ inputs.bump_type || 'patch' }}
4547
env:
4648
PDM_PUBLISH_USERNAME: __token__
4749
PDM_PUBLISH_PASSWORD: ${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)