From 8f9ffb1367532874fac15274f2aa711c981adc88 Mon Sep 17 00:00:00 2001 From: Scion Date: Sun, 30 Apr 2023 22:17:16 -0700 Subject: [PATCH] test --- itchio/butler-push/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itchio/butler-push/action.yaml b/itchio/butler-push/action.yaml index b687447..1350a6b 100644 --- a/itchio/butler-push/action.yaml +++ b/itchio/butler-push/action.yaml @@ -37,7 +37,7 @@ runs: DEST="${{ inputs.account }}/${{ inputs.project }}" CHANNEL="${{ steps.channel.outputs.channel }}" if [[ -n "$CHANNEL" ]]; then - DEST="$DEST:$CHANNEL" + DEST=$(echo "$DEST:$CHANNEL" | awk '{print tolower($0)}') fi COMMAND="push $FILE $DEST"