Add secret check step to deploy workflow for token length verification
All checks were successful
Deploy / deploy (push) Successful in 1m17s

This commit is contained in:
Adrian Altner 2026-04-22 02:36:09 +02:00
parent d6a073d234
commit 25235debbd

View file

@ -23,6 +23,14 @@ jobs:
--exclude='node_modules/' \
./ "${DEPLOY_DIR}/"
- name: Secret check
env:
WEBMENTION_TOKEN: ${{ secrets.WEBMENTION_TOKEN }}
WEBMENTION_APP_TOKEN: ${{ secrets.WEBMENTION_APP_TOKEN }}
run: |
echo "WEBMENTION_TOKEN length: ${#WEBMENTION_TOKEN}"
echo "WEBMENTION_APP_TOKEN length: ${#WEBMENTION_APP_TOKEN}"
- name: Build image
run: |
cd "${DEPLOY_DIR}"