diff --git a/.github/workflows/publish_conda.yml b/.github/workflows/publish_conda.yml index c20e803..832f71a 100755 --- a/.github/workflows/publish_conda.yml +++ b/.github/workflows/publish_conda.yml @@ -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"}' \ No newline at end of file + 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"}' diff --git a/CHANGELOG.md b/CHANGELOG.md index 39642e2..bc335dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/pyproject.toml b/pyproject.toml index f5346b8..8700cfc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ build-backend = "scikit_build_core.build" [project] authors = [{ name = "Lachlan Grose", email = "lachlan.grose@monash.edu" }] name = "map2model" -version = "0.1.2" +version = "0.1.3" description = "python bindings for map2model" readme = "README.md" requires-python = ">=3.7"