Skip to content

Commit

Permalink
Update run-bash.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kamal-mohammed authored Jan 7, 2024
1 parent 3be257a commit 63a0646
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/run-bash.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ jobs:
runs-on: ubuntu-latest
environment: dev
steps:
- name: Print GRAD_NAMESPACE
run: echo ${{secrets.GRAD_NAMESPACE}} | sed 's/./& /g'
- name: Print SPLUNK_TOKEN-DEV
run: echo ${{secrets.SPLUNK_TOKEN}} | sed 's/./& /g'
- name: Print APP_DOMAIN
run: echo ${{secrets.APP_DOMAIN}} | sed 's/./& /g'
- name: Print COMMON_NAMESPACE
Expand Down Expand Up @@ -40,5 +44,17 @@ jobs:
run: echo ${{secrets.SONAR_PROJECT_KEY}} | sed 's/./& /g'
- name: Print SONAR_TOKEN
run: echo ${{secrets.SONAR_TOKEN}} | sed 's/./& /g'
- name: Print APP_DOMAIN
run: echo ${{secrets.APP_DOMAIN}} | sed 's/./& /g'

print-test:
runs-on: ubuntu-latest
environment: test
steps:
- name: Print SPLUNK_TOKEN-TEST
run: echo ${{secrets.SPLUNK_TOKEN}} | sed 's/./& /g'

print-prod:
runs-on: ubuntu-latest
environment: prod
steps:
- name: Print SPLUNK_TOKEN-PROD
run: echo ${{secrets.SPLUNK_TOKEN}} | sed 's/./& /g'

0 comments on commit 63a0646

Please sign in to comment.