Compare commits

..

5 Commits

Author SHA1 Message Date
Kevin Han
4bfe4fcbad
Merge 60db2d5aca into 0f10697640 2025-03-19 09:48:36 +00:00
Kevin
60db2d5aca add type to input var 2025-03-19 09:48:30 +00:00
Kevin
212cf75d86 add type to input var 2025-03-19 09:47:52 +00:00
Kevin
f81dc9846f add type to input var 2025-03-19 09:47:29 +00:00
Kevin
0f43b1b7eb simplify input var reference 2025-03-19 09:46:48 +00:00
2 changed files with 5 additions and 3 deletions

View File

@ -5,6 +5,7 @@ on:
releaseVersion:
description: 'The target version you want to update and release'
required: true
type: string
jobs:
set-package-matrix:
@ -46,7 +47,7 @@ jobs:
pip install setuptools wheel build
- name: Build
run: |
echo ${{ github.event.inputs.releaseVersion }} >> ${{ matrix.package-name }}/.version
echo ${{ inputs.releaseVersion }} >> ${{ matrix.package-name }}/.version
cp LICENSE NOTICE ${{ matrix.package-name }}/
python -m build ${{ matrix.package-name }} --outdir dist/
- name: Publish
@ -65,6 +66,6 @@ jobs:
git config user.name "API Team"
git config user.email "api-team@thousandeyes.com"
git tag ${{ github.event.inputs.releaseVersion }}
git push origin ${{ github.event.inputs.releaseVersion }}
git tag ${{ inputs.releaseVersion }}
git push origin ${{ inputs.releaseVersion }}

1
.gitignore vendored
View File

@ -64,3 +64,4 @@ target/
#Ipython Notebook
.ipynb_checkpoints
.idea