mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-21 13:08:42 +00:00
6 lines
167 B
Bash
Executable file
6 lines
167 B
Bash
Executable file
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
message="$(head -n1 <<< "$COMMIT_MESSAGE")"
|
|
version="$(cut -d ' ' -f 2 <<< "${message}")"
|
|
echo "::set-output name=version::${version}"
|