Skip to content

Commit

Permalink
Update clouddriver-oes.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
yugaa22 authored Feb 20, 2024
1 parent 441be33 commit cee71b1
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/clouddriver-oes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ jobs:
id: build_variables
run: |
echo ::set-output name=REPO::ubi8-clouddriver-cve
echo ::set-output name=VERSION::"1.30.1$(date --utc +'%Y%m%d')"
#echo ::set-output name=VERSION::"1.30.1$(date --utc +'%Y%m%d')"
echo ::set-output name=VERSION::"1.30.1"
echo "::set-output name=GITHASH::$(git rev-parse --short HEAD)"
echo "::set-output name=BUILDDATE::$(date -u +"%Y%m%d%H%M")"
- name: Login to Quay
uses: docker/login-action@v1
# use service account flow defined at: https://github.com/docker/login-action#service-account-based-authentication-1
Expand Down Expand Up @@ -81,7 +84,8 @@ jobs:
file: docker/ubi8/Dockerfile-fips
push: true
tags: |
"${{ env.CONTAINER_REGISTRY }}/${{ steps.build_variables.outputs.REPO }}:${{ steps.build_variables.outputs.VERSION }}"
"${{ env.CONTAINER_REGISTRY }}/${{ steps.build_variables.outputs.REPO }}:${{ steps.build_variables.outputs.VERSION }}-${{ steps.build_variables.outputs.GITHASH }}-${{ steps.build_variables.outputs.BUILDDATE }}"
- name: dockerBuildpushjaeger
uses: docker/build-push-action@v2
with:
Expand All @@ -94,7 +98,9 @@ jobs:
file: docker/ubi8/Dockerfile-dev
push: true
tags: |
"${{ env.CONTAINER_REGISTRY }}/${{ steps.build_variables.outputs.REPO }}:${{ steps.build_variables.outputs.VERSION }}-dev"
"${{ env.CONTAINER_REGISTRY }}/${{ steps.build_variables.outputs.REPO }}:${{ steps.build_variables.outputs.VERSION }}-${{ steps.build_variables.outputs.GITHASH }}-${{ steps.build_variables.outputs.BUILDDATE }}-dev"
- id: get-build-name
run: |
imageName=${{ env.CONTAINER_REGISTRY }}/${{ steps.build_variables.outputs.REPO }}:${{ steps.build_variables.outputs.VERSION }}
Expand Down

0 comments on commit cee71b1

Please sign in to comment.