Skip to content

Commit

Permalink
TO REVERT: Add Debug secrets step
Browse files Browse the repository at this point in the history
  • Loading branch information
ctmbl committed May 17, 2024
1 parent 776a376 commit f5943dd
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/deploy_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,17 @@ jobs:
# Force to respect the 'dev-deployment' environment rules, in our case 1 maintainer approval
env:
SSH_KNOWN_HOSTS: ${{ secrets.SSH_KNOWN_HOSTS }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Debug
run: |
echo "GH_TOKEN (env): ${{ env.GH_TOKEN }}"
echo "GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}"
echo "CI_USER_NAME: ${{ secrets.CI_USER_NAME }}"
echo "TEST_EMPTY_SECRET:${{ secrets.TEST_EMPTY_SECRET }}"
echo "TEST_ORG_SECRET: ${{ secrets.TEST_ORG_SECRET }}"
echo "TEST_REPO_SECRET: ${{ secrets.TEST_REPO_SECRET }}"
echo "TEST_ENV_SECRET: ${{ secrets.TEST_ENV_SECRET }}"
# Checkout repo AND ITS SUBMODULES
- name: 🛒 Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit f5943dd

Please sign in to comment.