Skip to content

Commit

Permalink
Update orca-oes.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
yugaa22 authored Feb 20, 2024
1 parent d6fc59a commit c6c6ad3
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/orca-oes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ jobs:
id: build_variables
run: |
echo ::set-output name=REPO::ubi8-orca-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$(date --utc +'%-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 @@ -62,7 +66,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: dockerBuildpushdev
uses: docker/build-push-action@v2
with:
Expand All @@ -75,4 +80,5 @@ 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"

0 comments on commit c6c6ad3

Please sign in to comment.