Apr 131 #72
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
name: rsbc-dh-web-form-cd | |
on: | |
pull_request: | |
types: [opened, reopened, edited, synchronize] | |
branches: | |
- master | |
paths: | |
- "Java/README.md" | |
- "web_app/**" | |
- ".github/workflows/rsbh-dh-web-form*.yml" | |
env: | |
DOCKER_FILE: web_app/Dockerfile | |
DOCKER_IMAGE_NAME: dh-web-form | |
WORKING_DIRECTORY: web_app | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Login | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ secrets.DOCKER_REGISTRY_BE78D6 }} | |
username: ${{ secrets.DOCKER_USERNAME_BE78D6 }} | |
password: ${{ secrets.DOCKER_PASSWORD_BE78D6 }} | |
- name: Build & Push the image | |
working-directory: ${{env.WORKING_DIRECTORY}} | |
run: | | |
docker build -t ${{ secrets.DOCKER_REGISTRY_BE78D6 }}/${{ env.DOCKER_IMAGE_NAME }}:latest . | |
docker push ${{ secrets.DOCKER_REGISTRY_BE78D6 }}/${{ env.DOCKER_IMAGE_NAME }}:latest | |
- name: Authenticate and set context for tools namespace | |
uses: redhat-actions/[email protected] | |
with: | |
openshift_server_url: ${{ secrets.OPENSHIFT_SERVER_URL_SILVER }} | |
openshift_token: ${{ secrets.OPENSHIFT_SA_PIPELINE_TOKEN_SILVER }} | |
namespace: "${{ secrets.OPENSHIFT_LICENSE_PLATE_SILVER }}-tools" | |
- name: Import new image in Openshift from Artifactory | |
env: | |
IMAGE_NAME: ${{ env.DOCKER_IMAGE_NAME }} | |
run: | | |
oc import-image $IMAGE_NAME:latest --confirm | |