Skip to content

Commit

Permalink
WiP: Publishing: Fix some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
corey committed Dec 11, 2023
1 parent 1c45418 commit 03e4a36
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ jobs:
# echo "Publishing to Github Releases"
# # ...

puublish_to_pypi_test:
publish_to_pypi_test:
needs: build
runs-on: ubuntu-latest
if: ${{ github.event.inputs.publish_pypi_test == 'true' }}
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
verify-metadata: false
verbose: true

puublish_to_pypi:
publish_to_pypi:
needs: build
runs-on: ubuntu-latest
if: ${{ github.event.inputs.publish_pypi == 'true' }}
Expand All @@ -268,7 +268,7 @@ jobs:
- name: List OM Wheels
run: ls -al ./om_wheels

- name: Push To PyPi Test Server
- name: Push To PyPi Server
if: ${{ github.event.inputs.origen_metal_python_package == 'true' }}
uses: pypa/[email protected]
with:
Expand All @@ -286,7 +286,7 @@ jobs:
- name: List Origen Wheels
run: ls -al ./origen_wheels

- name: Push To PyPi Test Server
- name: Push To PyPi Server
if: ${{ github.event.inputs.origen_python_package == 'true' }}
uses: pypa/[email protected]
with:
Expand Down Expand Up @@ -364,7 +364,7 @@ jobs:
commit: ${{ github.sha }}
tag: ${{ env.tag }}
cleanup:
needs: [build, puublish_to_pypi_test, puublish_to_pypi, release]
needs: [build, publish_to_pypi_test, publish_to_pypi, release]
runs-on: ubuntu-latest
if: ${{ always() }}
steps:
Expand Down

0 comments on commit 03e4a36

Please sign in to comment.