mirror of
https://github.com/varunsridharan/actions-toolkit.git
synced 2025-02-23 07:03:18 +08:00
13 lines
226 B
Bash
13 lines
226 B
Bash
#!/bin/sh
|
|
|
|
source /gh-toolkit/shell/logger.sh
|
|
source /gh-toolkit/shell/inputvars.sh
|
|
source /gh-toolkit/shell/envars.sh
|
|
|
|
gh_set_output() {
|
|
echo "::set-output name=${1}::${2}"
|
|
}
|
|
|
|
gh_mask_output() {
|
|
echo "::add-mask::${1}"
|
|
}
|