Skip to content

Commit

Permalink
Close #49 - use retrospective-crate-version-tagging to create GitHu…
Browse files Browse the repository at this point in the history
…b releases
  • Loading branch information
idanarye committed Oct 17, 2024
1 parent 1da4895 commit 2de4d16
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions run-retrospective-crate-version-tagging.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/bin/bash

(
retrospective-crate-version-tagging detect \
--crate-name bevy-tnua \
--changelog-path CHANGELOG.md \
--tag-prefix v \
--title-prefix "Main Crate"
retrospective-crate-version-tagging detect \
--crate-name bevy-tnua-physics-integration-layer \
--changelog-path physics-integration-layer/CHANGELOG.md \
--tag-prefix physics-integration-layer-v \
--title-prefix "Physics Integration Layer"
retrospective-crate-version-tagging detect \
--crate-name bevy-tnua-avian3d \
--changelog-path avian3d/CHANGELOG.md \
--tag-prefix avian-v \
--title-prefix "Avian Integration"
retrospective-crate-version-tagging detect \
--crate-name bevy-tnua-rapier3d \
--changelog-path rapier3d/CHANGELOG.md \
--tag-prefix rapier-v \
--title-prefix "Rapier Integration"
) | retrospective-crate-version-tagging create-releases

0 comments on commit 2de4d16

Please sign in to comment.