Skip to content
Merged
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
20 changes: 11 additions & 9 deletions .github/workflows/release-ingestion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,17 @@ jobs:
name: release
url: https://pypi.org/p/zep-ingest
steps:
# Publish before creating the tag/release so a failed upload cannot leave an
# orphaned tag that blocks the next dispatch after main moves forward.
- name: Download build artifacts
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
with:
name: ingestion-dist
path: dist/
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # v1.14.2
with:
packages-dir: dist/
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: ${{ needs.resolve-release.outputs.sha }}
Expand Down Expand Up @@ -186,12 +197,3 @@ jobs:
fi
gh release create "${RELEASE_ARGS[@]}"
fi
- name: Download build artifacts
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
with:
name: ingestion-dist
path: dist/
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # v1.14.2
with:
packages-dir: dist/
Loading