Compare commits

..

No commits in common. "60db2d5aca372cab31012b9b91d68b0915c24a2c" and "3d9034a1f5971f42e5eedcfdfde42d132fe261c7" have entirely different histories.

2 changed files with 3 additions and 5 deletions

View File

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

1
.gitignore vendored
View File

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