Merge branch 'main' into NH-85695-Add-signing-binaries-mac #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Secret Variable | |
on: | |
push: | |
branches: | |
- NH-85695-Add-signing-binaries-mac | |
pull_request: | |
jobs: | |
check-secret: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check if SECRET_KEY is set | |
run: | | |
if [ -z "${{ secrets.SWO_ISSUER_ID }}" ]; then | |
echo "Error: SECRET_KEY is not set." | |
exit 1 | |
else | |
echo "SECRET_KEY is set." | |
fi |