Skip to content

Commit

Permalink
Update deploy-to.openshift-dev-test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JavaDeveloper456788 authored Oct 9, 2024
1 parent 6e5a6a5 commit 093907b
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/deploy-to.openshift-dev-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,7 @@ jobs:
frontend_image: '${{ steps.build-image-frontend.outputs.image }}'
api_image: '${{ steps.build-image-api.outputs.image }}'
cas_image: '${{ steps.build-image-api.outputs.image }}'
services:
docker:
image: docker:latest
options: --privileged


steps:
- name: Check for required secrets
Expand Down Expand Up @@ -106,6 +103,16 @@ jobs:
}
- name: Check out repository
uses: actions/checkout@v3
- name: Check Docker Version
run: docker --version
- name: Install Docker
run: |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install docker-ce=18.06.1~ce~3-0~ubuntu
- name: Check Docker Version
run: docker --version

- name: Install oc
uses: redhat-actions/openshift-tools-installer@v1
Expand Down

0 comments on commit 093907b

Please sign in to comment.