Add secret check step to deploy workflow for token length verification
All checks were successful
Deploy / deploy (push) Successful in 1m17s
All checks were successful
Deploy / deploy (push) Successful in 1m17s
This commit is contained in:
parent
d6a073d234
commit
25235debbd
1 changed files with 8 additions and 0 deletions
|
|
@ -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}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue