fix: Use shebang in release recipe

This commit is contained in:
Gerald Pinder 2024-04-22 17:07:40 -04:00
parent 8f811200aa
commit 8d140724ae
2 changed files with 3 additions and 1 deletions

View file

@ -33,6 +33,7 @@ All notable changes to this project will be documented in this file.
- Cleanup images and use hash for exports tag (#158)
- Update akmods module to account for upstream changes (#165)
- Prepare justfile for release
- Release
### README

View file

@ -3,7 +3,6 @@
export RUST_BACKTRACE := "1"
set dotenv-load := true
set shell := ["bash", "-xeu", "-o", "pipefail", "-c"]
set positional-arguments := true
# default recipe to display help information
@ -12,6 +11,8 @@ default:
# release: Run cargo release and push the tag separately
release *args:
#!/usr/bin/env bash
set -euxo pipefail
# --workspace: updating all crates in the workspace
# --no-tag: do not push tag for each new version
# --no-confirm: don't look for user input, just run the command