Skip to content

Commit

Permalink
ci: update publish release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dbhart committed Nov 7, 2024
1 parent 89ba161 commit 86a23ab
Showing 1 changed file with 18 additions and 19 deletions.
37 changes: 18 additions & 19 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
name: dist-exec-windows-latest
path: ./dist/sansmic-*-standalone-win_amd64.zip

cut-release:
publish-to-gh:
name: Upload artifacts
runs-on: ubuntu-latest
needs:
Expand Down Expand Up @@ -142,14 +142,15 @@ jobs:
./dist/*.whl
- name: Publish | Upload to GitHub Release Assets
uses: python-semantic-release/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release upload ${{github.ref_name}} dist/*
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

publish-to-testpypi:
name: Publish Python 🐍 distribution πŸ“¦ to TestPyPI
runs-on: ubuntu-latest
needs: [cut-release]
needs: [publish-to-gh]
if: ${{ startsWith(github.ref, 'refs/tags/') && github.repository == 'sandialabs/sansmic' }} # only publish to PyPI on tag pushes

environment:
Expand All @@ -171,12 +172,11 @@ jobs:
ref: ${{ github.sha }}

- name: Setup | Download all the dists
run: |
mkdir dist
gh release download -D dist --pattern="*.whl"
gh release download -D dist --pattern="*.tar.gz"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
pattern: dist-cibw-*
path: dist
merge-multiple: true

- name: Action | Publish distribution πŸ“¦ to TestPyPI
uses: pypa/gh-action-pypi-publish@fb13cb306901256ace3dab689990e13a5550ffaa # release/v1
Expand All @@ -191,7 +191,7 @@ jobs:
name: >-
Publish Python 🐍 distribution πŸ“¦ to PyPI
if: ${{ startsWith(github.ref, 'refs/tags/') && github.repository == 'sandialabs/sansmic' }} # only publish to PyPI on tag pushes
needs: [cut-release, publish-to-testpypi]
needs: [publish-to-gh, publish-to-testpypi]
environment:
name: release
url: https://pypi.org/p/sansmic
Expand All @@ -211,13 +211,12 @@ jobs:
ref: ${{ github.sha }}

- name: Setup | Download all the dists
run: |
mkdir dist
gh release download -D dist --pattern="*.whl"
gh release download -D dist --pattern="*.tar.gz"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
pattern: dist-cibw-*
path: dist
merge-multiple: true

- name: Setup | Publish distribution πŸ“¦ to PyPI
uses: pypa/gh-action-pypi-publish@fb13cb306901256ace3dab689990e13a5550ffaa # release/v1
with:
Expand Down

0 comments on commit 86a23ab

Please sign in to comment.