Skip to content

fix: trigger release please again #44

fix: trigger release please again

fix: trigger release please again #44

Workflow file for this run

on:

Check failure on line 1 in .github/workflows/publish_conda.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish_conda.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: conda, pypi
push:
branches:
- master
workflow_dispatch:
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: GoogleCloudPlatform/release-please-action@v2
with:
release-type: python
package-name: map2model
outputs:
release_created: ${{ steps.release.outputs.release_created }}
pypi:
runs-on: ubuntu-latest
needs: release-please
if: needs.release-please.outputs.release_created == 'true'
name: Trigger build for pypi 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/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"}'