Skip to content

Commit

Permalink
WiP: Debug publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
corey committed Dec 10, 2023
1 parent 8ea05f1 commit 318c370
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ jobs:
run: ls -al ./om_wheels

- name: Push To PyPi Test Server
if: ${{ github.event.inputs.origen_metal_python_package == 'true' }}
uses: pypa/gh-action-pypi-publish@v1.8.10
with:
packages-dir: om_wheels
Expand All @@ -244,6 +245,7 @@ jobs:
run: ls -al ./origen_wheels

- name: Push To PyPi Test Server
if: ${{ github.event.inputs.origen_python_package == 'true' }}
uses: pypa/gh-action-pypi-publish@v1.8.10
with:
packages-dir: origen_wheels
Expand Down Expand Up @@ -312,14 +314,14 @@ jobs:
- name: Display Tag
run: echo ${{ env.tag }}

# - name: Generate Github Release
# uses: ncipollo/release-action@v1
# with:
# artifacts: ./om_wheels.zip, ./origen_wheels.zip
# artifactErrorsFailBuild: true
# prerelease: ${{ github.event.inputs.prerelease == 'true' }}
# commit: ${{ github.sha }}
# tag: ${{ env.tag }}
- name: Generate Github Release
uses: ncipollo/release-action@v1
with:
artifacts: ./om_wheels.zip, ./origen_wheels.zip
artifactErrorsFailBuild: true
prerelease: ${{ github.event.inputs.prerelease == 'true' }}
commit: ${{ github.sha }}
tag: ${{ env.tag }}
cleanup:
needs: [build, puublish_to_pypi_test, release]
runs-on: ubuntu-latest
Expand Down

0 comments on commit 318c370

Please sign in to comment.