Skip to content

Commit

Permalink
Create test-action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kamal-mohammed authored Jun 25, 2024
1 parent 7488894 commit d2b9272
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Test Action
env:
OPENSHIFT_SERVER: ${{ vars.OPENSHIFT_SERVER }}
OPENSHIFT_TOKEN: ${{ secrets.OPENSHIFT_TOKEN }}
OPENSHIFT_NAMESPACE: ${{ vars.GRAD_NAMESPACE }}-dev
COMMON_NAMESPACE: ${{ vars.COMMON_NAMESPACE }}
GRAD_NAMESPACE: ${{ vars.GRAD_NAMESPACE }}
BUSINESS_NAMESPACE: ${{ vars.GRAD_BUSINESS_NAMESPACE }}
REPLICAS: 6
on:
workflow_dispatch:
jobs:
test-action:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Install oc
uses: redhat-actions/openshift-tools-installer@v1
with:
oc: 4
- name: init
run : |
echo "Initializing..."
set -eux
openssl rand -base64 12

0 comments on commit d2b9272

Please sign in to comment.