mirror of
https://github.com/varunsridharan/actions-toolkit.git
synced 2025-02-23 23:23:47 +08:00
14 lines
226 B
Bash
14 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}"
|
||
|
}
|