From 1c9483ce01eca1ed832a72cb7301a5e80623b863 Mon Sep 17 00:00:00 2001 From: Tamipes Date: Sun, 12 Jul 2026 02:11:14 +0200 Subject: [PATCH] fix + debug: actually implement what I wanted --- action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 5dc988e..09cfa30 100644 --- a/action.yml +++ b/action.yml @@ -22,7 +22,9 @@ runs: run: | # echo "url is: $ACTIONS_ID_TOKEN_REQUEST_URL" # curl -H "Authorization: bearer $ACTIONS_ID_TOKEN_REQUEST_TOKEN" "$ACTIONS_ID_TOKEN_REQUEST_URL&audience=https://niks3.tami.moe" > /run/niks3-auth-token - token_file=$($RUNNER_TEMP) + echo "starting..." + token_file=$(mktemp) + echo "$token_file" printf '%s' "$TOKEN" > "$token_file" export NIKS3_AUTH_TOKEN_FILE="$token_file" niks3 push --pin "$NAME" "$(realpath result)"