-
Notifications
You must be signed in to change notification settings - Fork 2
executable file
·35 lines (35 loc) · 1.15 KB
/
publish_conda.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
on:
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}}
steps:
- 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"}'
- 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"}'