mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-22 21:16:38 +00:00
fixup: cut needed some input
This commit is contained in:
parent
b30d0ce88f
commit
d556f20301
5
.github/workflows/ci.yaml
vendored
5
.github/workflows/ci.yaml
vendored
@ -38,13 +38,12 @@ jobs:
|
||||
id: lowercase-variables
|
||||
shell: bash
|
||||
run: |
|
||||
set -x ;
|
||||
set_sl_var() { local f='%s=%s\n' ; printf -- "${f}" "$@" ; } ;
|
||||
for var in \
|
||||
set -x ; for var in \
|
||||
actor='${{ github.actor }}' \
|
||||
repository_owner='${{ github.repository_owner }}'
|
||||
do
|
||||
k="$(cut -d '=' -f 1)" ;
|
||||
k="$( cut -d '=' -f 1 <<<"${var}" )" ;
|
||||
v="${var#${k}=}" ;
|
||||
set_sl_var >> "${GITHUB_OUTPUT}" \
|
||||
"${k}" "${v,,}" ;
|
||||
|
Loading…
Reference in New Issue
Block a user