Skip to content

Commit

Permalink
tickbox/bump_version: Fix, should almost work now
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasHabets committed Mar 1, 2025
1 parent e1c6621 commit c1d8b02
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion tickbox/bump_version/60-e2e-tests.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/env bash
exec cargo test -- --ignored
exec cargo test --release -- --ignored
4 changes: 2 additions & 2 deletions tickbox/bump_version/80-commit-version.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
set -euo pipefail
CURRENT="$(awk '/^version/ {print $3}' Cargo.toml | head -1 | sed 's/"//g')"
exec echo git commit -a -m"Bump version to ${VERSION}"
VERSION="$(awk '/^version/ {print $3}' Cargo.toml | head -1 | sed 's/"//g')"
exec git commit -a -m"Bump version to ${VERSION}"
2 changes: 1 addition & 1 deletion tickbox/bump_version/81-tag.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash
CURRENT="$(awk '/^version/ {print $3}' Cargo.toml | head -1 | sed 's/"//g')"
exec echo git tag "v${CURRENT}"
exec git tag "v${CURRENT}"
2 changes: 1 addition & 1 deletion tickbox/bump_version/82-push.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/env bash
exec echo git push
exec git push
2 changes: 1 addition & 1 deletion tickbox/bump_version/83-push-tags.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/env bash
exec echo git push --tags
exec git push --tags
2 changes: 1 addition & 1 deletion tickbox/bump_version/90-publish-macros.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
set -euo pipefail
cd rustradio_macros
exec echo cargo publish
exec cargo publish
2 changes: 1 addition & 1 deletion tickbox/bump_version/95-publish.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/env bash
exec echo cargo publish
exec cargo publish

0 comments on commit c1d8b02

Please sign in to comment.