Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Loop3D/map2model_cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlangrose committed Oct 17, 2024
2 parents 7fda704 + 1064c98 commit e7bd47a
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 17 deletions.
33 changes: 17 additions & 16 deletions .github/workflows/publish_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,22 @@ 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 }}
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"}'
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"}'
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

### [0.1.3](https://www.github.com/Loop3D/map2model_cpp/compare/v0.1.2...v0.1.3) (2024-10-16)


### Bug Fixes

* trigger release please again ([096dbcf](https://www.github.com/Loop3D/map2model_cpp/commit/096dbcf0ceb57d0f3a17a6cb7491cf39d45dc5d2))
* updating workflows ([794d216](https://www.github.com/Loop3D/map2model_cpp/commit/794d21650f362c837b0c6a1a28c0715419633161))

### [0.1.2](https://www.github.com/Loop3D/map2model_cpp/compare/v0.1.1...v0.1.2) (2024-10-16)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ build-backend = "scikit_build_core.build"
[project]
authors = [{ name = "Lachlan Grose", email = "[email protected]" }]
name = "map2model"
version = "0.1.2"
version = "0.1.3"
description = "python bindings for map2model"
readme = "README.md"
requires-python = ">=3.7"
Expand Down

0 comments on commit e7bd47a

Please sign in to comment.