Skip to content

Commit

Permalink
Fix typo in anaconda workflow
Browse files Browse the repository at this point in the history
Re-order release workflows so pypi is last.
  • Loading branch information
dihm committed Apr 23, 2024
1 parent 9a41dcb commit dcf616f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
name: PyPI Release
runs-on: ubuntu-latest
if: github.repository_owner == 'QTC-UMD'
needs: [build]
needs: [build, conda-release]
environment:
name: pypi
url: https://pypi.org/p/${{ env.PACKAGE_NAME }}
Expand All @@ -142,7 +142,7 @@ jobs:
name: Conda Release
runs-on: ubuntu-latest
if: github.repository_owner == 'QTC-UMD'
needs: [build, pypi-release]
needs: [build]
steps:
- name: Download Artifact (conda)
uses: actions/download-artifact@v4
Expand All @@ -165,7 +165,7 @@ jobs:
shell: bash -l {0}
run: |
anaconda \
--token ${{ secrets.ANACONDA_API_TOKEN }}
--token ${{ secrets.ANACONDA_API_TOKEN }} \
upload \
--user $ANACONDA_USER \
conda_packages/*/*
Expand Down

0 comments on commit dcf616f

Please sign in to comment.