We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c120a3 commit 1159c02Copy full SHA for 1159c02
.github/workflows/publish.yml
@@ -1,15 +1,12 @@
1
name: Publish to PyPI
2
3
on:
4
- push:
5
- branches: [dickson/version-bump] # TESTING ONLY - REMOVE BEFORE MERGE
6
workflow_dispatch:
7
inputs:
8
version:
9
description: 'Version to publish (e.g., 0.1.0)'
10
required: true
11
type: string
12
- default: '0.0.0.dev20250721' # TESTING ONLY - REMOVE BEFORE MERGE
13
jobs:
14
test:
15
runs-on: ubuntu-latest
@@ -79,7 +76,7 @@ jobs:
79
76
- name: Set version
80
77
id: version
81
78
run: |
82
- VERSION="${{ github.event.inputs.version || '0.0.0.dev20250721' }}" # TESTING ONLY - defaults to test version
+ VERSION="${{ github.event.inputs.version }}"
83
echo "VERSION=$VERSION" >> $GITHUB_ENV
84
echo "version=$VERSION" >> $GITHUB_OUTPUT
85
0 commit comments