Skip to content

Commit

Permalink
chore: fixing release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mdtanker committed Nov 23, 2023
1 parent a30266f commit 498164d
Showing 1 changed file with 38 additions and 49 deletions.
87 changes: 38 additions & 49 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,69 +22,58 @@ jobs:
token: ${{secrets.PAT}}

- name: Python Semantic Release
id: release
uses: python-semantic-release/python-semantic-release@master

# Always build & lint package.
build-package:
name: Build & verify package
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# Always build & lint package.
- name: Build & verify package
id: build-package
uses: hynek/build-and-inspect-python-package@v1

- uses: hynek/build-and-inspect-python-package@v1
# Upload to Test PyPI on every commit on main.
- name: Publish in-dev package to test.pypi.org
id: release-test-pypi
needs: [release, build-package]
environment:
name: testpypi
url: https://pypi.org/p/invert4geom
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
if: github.ref == 'refs/heads/main'

# Upload to Test PyPI on every commit on main.
release-test-pypi:
name: Publish in-dev package to test.pypi.org
needs: [release, build-package]
environment:
name: testpypi
url: https://pypi.org/p/invert4geom
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest

steps:
# Download the built package from the build-package job.
- name: Download packages built by build-and-inspect-python-package
uses: actions/download-artifact@v3
with:
name: Packages
path: dist

# Upload to Test PyPI
- name: Upload package to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
environment:
name: testpypi
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
with:
repository-url: https://test.pypi.org/legacy/

# Upload to real PyPI on GitHub Releases.
release-pypi:
name: Publish released package to pypi.org
needs: [release, build-package]
environment:
name: pypi
url: https://pypi.org/p/invert4geom
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest

steps:
- name: Download packages built by build-and-inspect-python-package
uses: actions/download-artifact@v3
with:
name: Packages
path: dist

- name: Upload package to PyPI
# Upload to real PyPI on GitHub Releases.
- name: Publish released package to pypi.org
id: release-pypi
needs: [release, build-package]
environment:
name: pypi
url: https://pypi.org/p/invert4geom
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
if: github.ref == 'refs/heads/main'
uses: pypa/gh-action-pypi-publish@release/v1

# Upload to GitHub Releases on every release.
release-github:
name: Publish package distributions to GitHub Releases
uses: python-semantic-release/upload-to-gh-release@main
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }}
needs: [release, build-package]
# Upload to GitHub Releases.
- name: Publish package distributions to GitHub Releases
id: release-github
uses: python-semantic-release/upload-to-gh-release@main
# if: ${{ always() && contains(join(needs.*.result, ','), 'success') }}
if: steps.release.outputs.released == 'true'
needs: [release, build-package]

0 comments on commit 498164d

Please sign in to comment.