From 096dbcf0ceb57d0f3a17a6cb7491cf39d45dc5d2 Mon Sep 17 00:00:00 2001 From: Lachlan Grose Date: Thu, 17 Oct 2024 10:07:36 +1100 Subject: [PATCH 1/3] fix: trigger release please again --- .github/workflows/publish_conda.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_conda.yml b/.github/workflows/publish_conda.yml index 73391b0..475fc4a 100755 --- a/.github/workflows/publish_conda.yml +++ b/.github/workflows/publish_conda.yml @@ -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' @@ -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"}' \ No newline at end of file + -d '{"ref":"main"}' + From 585d05e98bd917814415b3577d0b75171e8ae7df Mon Sep 17 00:00:00 2001 From: Lachlan Grose Date: Thu, 17 Oct 2024 10:11:22 +1100 Subject: [PATCH 2/3] Update publish_conda.yml --- .github/workflows/publish_conda.yml | 34 ++++++++++++++--------------- 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/.github/workflows/publish_conda.yml b/.github/workflows/publish_conda.yml index 475fc4a..a0871c4 100755 --- a/.github/workflows/publish_conda.yml +++ b/.github/workflows/publish_conda.yml @@ -18,22 +18,20 @@ jobs: 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"}' + 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 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"}' + From 3eb6a42e0fc0a7aa223dd91ff328062fb8eb844f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 16 Oct 2024 23:11:46 +0000 Subject: [PATCH 3/3] chore: release 0.1.3 --- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) 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"