Skip to content

Commit

Permalink
ci: Remove CI-managed prerelease in favor of manual release
Browse files Browse the repository at this point in the history
  • Loading branch information
ketozhang committed Jun 21, 2024
1 parent 8486db4 commit 9e7b1b6
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Release package

on:
push: # On push to these prerelease branches
branches:
- v2
release: # On create a GitHub Release
types:
- created
Expand All @@ -17,7 +14,6 @@ jobs:
url: https://pypi.org/p/asdf-pydantic/
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
contents: write # For writing to GitHub release

steps:
- uses: actions/checkout@v3
Expand All @@ -29,16 +25,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install hatch
echo "ASDF_PYDANTIC_VERSION=$(hatch version | sed 's/+g.*$//g')" >> $GITHUB_ENV
- name: Build
run: hatch build
- name: Create GitHub Release (prerelease only)
if: startsWith(github.ref, 'refs/heads/v2')
uses: softprops/action-gh-release@v1
with:
prerelease: true
tag_name: ${{ env.ASDF_PYDANTIC_VERSION }}
files: dist/*
generate_release_notes: true
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 9e7b1b6

Please sign in to comment.