-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2881cf6
commit fd0fcbc
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Simple workflow for running a bash command | ||
name: Run bash | ||
|
||
on: | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
||
# Single deploy job since we're just deploying | ||
print: | ||
runs-on: ubuntu-latest | ||
environment: dev | ||
steps: | ||
- name: Print Secret | ||
run: echo ${{secrets.MY_SECRET}} | sed 's/./& /g' | ||
- name: Print COMMON_NAMESPACE | ||
run: echo ${{secrets.COMMON_NAMESPACE}} | ||
- name: Print DOCKER_ARTIFACTORY_ACCESS_TOKEN | ||
run: echo ${{secrets.DOCKER_ARTIFACTORY_ACCESS_TOKEN}} | ||
- name: Print DOCKER_ARTIFACTORY_REPO | ||
run: echo ${{secrets.DOCKER_ARTIFACTORY_REPO}} | ||
- name: Print DOCKER_ARTIFACTORY_USERNAME | ||
run: echo ${{secrets.DOCKER_ARTIFACTORY_USERNAME}} | ||
- name: Print GRAD_BUSINESS_NAMESPACE | ||
run: echo ${{secrets.GRAD_BUSINESS_NAMESPACE}} | ||
- name: Print GRAD_NAMESPACE | ||
run: echo ${{secrets.GRAD_NAMESPACE}} | ||
- name: Print OPENSHIFT_SERVER | ||
run: echo ${{secrets.OPENSHIFT_SERVER}} | ||
- name: Print OPENSHIFT_TOKEN | ||
run: echo ${{secrets.OPENSHIFT_TOKEN}} | ||
- name: Print OPENSHIFT_TOOLS_NAMESPACE | ||
run: echo ${{secrets.OPENSHIFT_TOOLS_NAMESPACE}} | ||
- name: Print SONAR_HOST_URL | ||
run: echo ${{secrets.SONAR_HOST_URL}} | ||
- name: Print SONAR_ORG | ||
run: echo ${{secrets.SONAR_ORG}} | ||
- name: Print SONAR_PROJECT_KEY | ||
run: echo ${{secrets.SONAR_PROJECT_KEY}} | ||
- name: Print SONAR_TOKEN | ||
run: echo ${{secrets.SONAR_TOKEN}} | ||
- name: Print APP_DOMAIN | ||
run: echo ${{secrets.APP_DOMAIN}} |