Skip to content

Commit 9e5c0cb

Browse files
committed
Debuuging.
1 parent 5300a6d commit 9e5c0cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/debug/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
echo "### 🔍 Checking GitHub Secrets & Environment Variables ###"
1212
1313
# Check if GITHUB_TOKEN is set
14-
if [[ -z "${{ secrets.GITHUB_TOKEN }}" ]]; then
14+
if [[ -z "$GITHUB_TOKEN" ]]; then
1515
echo "❌ GITHUB_TOKEN is NOT set. This may be due to missing permissions or a misconfigured repository secret.";
1616
else
1717
echo "✅ GITHUB_TOKEN is set.";
1818
fi
1919
2020
# Check if NPM_TOKEN is set
21-
if [[ -z "${{ secrets.NPM_TOKEN }}" ]]; then
21+
if [[ -z "$NPM_TOKEN" ]]; then
2222
echo "❌ NPM_TOKEN is NOT set. Ensure it exists in repository secrets under Settings → Secrets.";
2323
else
2424
echo "✅ NPM_TOKEN is set.";

0 commit comments

Comments
 (0)