Skip to content

Commit

Permalink
hide some of the variables
Browse files Browse the repository at this point in the history
  • Loading branch information
haitch committed Apr 18, 2024
1 parent c9d3199 commit 8b66dbd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/deploy-lts-prow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
KUBEKINS_E2E_TAG: v20230703-e6ae5b372a-master
steps:
- name: Generate fake mount secret
run: echo FAKE_MOUNT_SECRET=$(echo '{"account":"fake","password":"fake"}' | base64) >> "$GITHUB_ENV"
run: |
echo "::add-mask::$FAKE_MOUNT_SECRET"
echo FAKE_MOUNT_SECRET=$(echo '{"account":"fake","password":"fake"}' | base64) >> "$GITHUB_ENV"
- name: Check out repo
uses: actions/checkout@v3
Expand All @@ -44,8 +46,11 @@ jobs:
- name: Fetch config
run: |
echo "PROW_HOST=${{ steps.bicep.outputs.prowHostName }}" >> "$GITHUB_ENV"
echo "::add-mask::$AZURE_STORAGE_ACCOUNT_USER"
echo "AZURE_STORAGE_ACCOUNT_USER=${{ steps.bicep.outputs.storageAccountName }}" >> "$GITHUB_ENV"
echo "::add-mask::$PUBLIC_IP_NAME"
echo "PUBLIC_IP_NAME=${{ steps.bicep.outputs.publicIpName }}" >> "$GITHUB_ENV"
echo "::add-mask::$PUBLIC_IP_ADDRESS"
echo "PUBLIC_IP_ADDRESS=${{ steps.bicep.outputs.publicIpAddress }}" >> "$GITHUB_ENV"
- name: Fetch storage key
Expand Down

0 comments on commit 8b66dbd

Please sign in to comment.