mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
9 lines
159 B
Bash
9 lines
159 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e # Fail if any command fails
|
||
|
|
||
|
RELEASE_TAG=$(git tag --points-at HEAD)
|
||
|
|
||
|
PROJECT=${RELEASE_TAG/\/*/}
|
||
|
(cd "$PROJECT" && cargo publish)
|