Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 0 additions & 55 deletions .github/workflows/durabletask-azuremanaged-dev.yml

This file was deleted.

54 changes: 0 additions & 54 deletions .github/workflows/durabletask-azuremanaged-experimental.yml

This file was deleted.

39 changes: 0 additions & 39 deletions .github/workflows/durabletask-azuremanaged.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,42 +88,3 @@ jobs:
working-directory: tests/durabletask-azuremanaged
run: |
pytest -m "dts" --verbose

publish-release:
if: startsWith(github.ref, 'refs/tags/azuremanaged-v') # Only run if a matching tag is pushed
needs: run-docker-tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Extract version from tag
run: echo "VERSION=${GITHUB_REF#refs/tags/azuremanaged-v}" >> $GITHUB_ENV # Extract version from the tag

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.14" # Adjust Python version as needed

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build twine

- name: Build package from directory durabletask-azuremanaged
working-directory: durabletask-azuremanaged
run: |
python -m build

- name: Check package
working-directory: durabletask-azuremanaged
run: |
twine check dist/*

- name: Publish package to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_AZUREMANAGED }} # Store your PyPI API token in GitHub Secrets
working-directory: durabletask-azuremanaged
run: |
twine upload dist/*
52 changes: 0 additions & 52 deletions .github/workflows/durabletask-dev.yml

This file was deleted.

50 changes: 0 additions & 50 deletions .github/workflows/durabletask-experiment.yml

This file was deleted.

36 changes: 0 additions & 36 deletions .github/workflows/durabletask.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,39 +85,3 @@ jobs:
working-directory: tests/durabletask
run: |
pytest -m "not dts" --verbose

publish-release:
if: startsWith(github.ref, 'refs/tags/v') # Only run if a matching tag is pushed
needs: run-tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Extract version from tag
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV # Extract version from the tag

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.14" # Adjust Python version as needed

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build twine

- name: Build package from root directory
run: |
python -m build

- name: Check package
run: |
twine check dist/*

- name: Publish package to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} # Store your PyPI API token in GitHub Secrets
run: |
twine upload dist/*
20 changes: 20 additions & 0 deletions eng/ci/code-mirror.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
trigger:
branches:
include:
- main
- release/*

pr: none

resources:
repositories:
- repository: eng
type: git
name: engineering
ref: refs/tags/release

variables:
- template: ci/variables/cfs.yml@eng

extends:
template: ci/code-mirror.yml@eng
Loading