kopia lustrzana https://github.com/inkstitch/inkstitch
11 wiersze
165 B
Plaintext
11 wiersze
165 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
VERSION="${GITHUB_REF##*/}"
|
||
|
OS="${BUILD:-$(uname)}"
|
||
|
|
||
|
if [[ "$VERSION" == "" ]]; then
|
||
|
VERSION="Manual Install"
|
||
|
fi
|
||
|
|
||
|
echo "${VERSION} (${OS})" > VERSION
|