Skip to content

Commit fbc4076

Browse files
committed
Fix publish
1 parent 15240bd commit fbc4076

File tree

1 file changed

+6
-13
lines changed

1 file changed

+6
-13
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,11 @@ jobs:
2828
baseVersion: 1.0.0
2929
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
3030

31-
- name: Run image
32-
uses: abatilo/actions-poetry@v2.1.5
33-
with:
34-
poetry-version: "1.4.2"
35-
36-
- name: update package version
37-
run: |
38-
echo "${{ steps.vtl.outputs.ver_semVerNoMeta}}"
39-
poetry version "${{ steps.vtl.outputs.ver_semVerNoMeta}}"
40-
working-directory: ${{ env.WORKING_DIR }}
41-
42-
- name: publish the package to PyPI
31+
- name: publish
4332
run: |
44-
poetry publish --build -r fury -u ${{ secrets.FURY_PUSH_TOKEN }} -p NOPASS
33+
echo version: $packageVersion
34+
python setup.py sdist
35+
curl -F package=@./dist/botbuilder-integration-aiohttp-$packageVersion.tar.gz https://${{ secrets.FURY_PUSH_TOKEN }}@push.fury.io/mapped/
36+
env:
37+
packageVersion: ${{ steps.vtl.outputs.ver_semVerNoMeta}}
4538
working-directory: ${{ env.WORKING_DIR }}

0 commit comments

Comments
 (0)