Skip to content

Commit

Permalink
fix: trigger release please again
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlangrose authored Oct 16, 2024
1 parent 7b4b3cc commit 096dbcf
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/publish_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
package-name: map2model
outputs:
release_created: ${{ steps.release.outputs.release_created }}
on-relase:
pypi:
runs-on: ubuntu-latest
needs: release-please
if: needs.release-please.outputs.release_created == 'true'
Expand All @@ -25,10 +25,15 @@ jobs:
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/Loop3d/map2model_cpp/actions/workflows/pypi.yml/dispatches \
-d '{"ref":"main"}'
conda:
runs-on: ubuntu-latest
needs: release-please
if: needs.release-please.outputs.release_created == 'true'
name: Trigger build for conda and upload
run: |
curl -X POST \
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/Loop3d/map2model_cpp/actions/workflows/conda.yml/dispatches \
-d '{"ref":"main"}'
-d '{"ref":"main"}'

0 comments on commit 096dbcf

Please sign in to comment.