Skip to content

Commit 6b57b35

Browse files
committed
Restore order
1 parent 6c76532 commit 6b57b35

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

.github/workflows/release.yml

+14-8
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,31 @@ jobs:
2323
run: |
2424
python -m pip install --upgrade pip
2525
pip install setuptools wheel twine
26+
- name: Build azure-kusto-data
27+
working-directory: ./azure-kusto-data
28+
run: |
29+
python setup.py sdist bdist_wheel
30+
- name: Build azure-kusto-ingest
31+
working-directory: ./azure-kusto-ingest
32+
run: |
33+
python setup.py sdist bdist_wheel
34+
- name: Release
35+
uses: docker://antonyurchenko/git-release:latest
36+
env:
37+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38+
with:
39+
args: azure-kusto-data/dist/*.tar.gz azure-kusto-ingest/dist/*.tar.gz azure-kusto-data/dist/*.whl azure-kusto-ingest/dist/*.whl
2640
- name: Publish azure-kusto-data
2741
working-directory: ./azure-kusto-data
2842
env:
2943
TWINE_USERNAME: microsoftkusto
3044
TWINE_PASSWORD: ${{ secrets.pypi_password }}
3145
run: |
32-
python setup.py sdist bdist_wheel
3346
twine upload dist/*
3447
- name: Publish azure-kusto-ingest
3548
working-directory: ./azure-kusto-ingest
3649
env:
3750
TWINE_USERNAME: microsoftkusto
3851
TWINE_PASSWORD: ${{ secrets.pypi_password }}
3952
run: |
40-
python setup.py sdist bdist_wheel
4153
twine upload dist/*
42-
- name: Release
43-
uses: docker://antonyurchenko/git-release:latest
44-
env:
45-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
46-
with:
47-
args: azure-kusto-data/dist/*.tar.gz azure-kusto-ingest/dist/*.tar.gz azure-kusto-data/dist/*.whl azure-kusto-ingest/dist/*.whl

CHANGELOG.MD

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
## [4.1.3] - 2023-03-19
88
### Added
99
- Add new trident endpoint support
10+
### Security
11+
- Redirects are no longer allowed
1012

1113
## [4.1.2] - 2023-02-22
1214

0 commit comments

Comments
 (0)