Skip to content

Commit

Permalink
fix: use latest everywhere so that merge queue doesnt break + cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tulilirockz committed Jan 3, 2025
1 parent f67f380 commit 05a8f2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ jobs:

- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT

- name: Image Metadata
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5
id: metadata
with:
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=raw,value=latest
type=raw,value={{date 'YYYYMMDD'}},enable={{is_default_branch}}
type=raw,value=${{ env.CENTOS_VERSION }},enable={{is_default_branch}}
type=raw,value=${{ env.CENTOS_VERSION }}.{{date 'YYYYMMDD'}},enable={{is_default_branch}}
Expand All @@ -72,7 +72,7 @@ jobs:
org.opencontainers.image.created=${{ steps.date.outputs.date }}
org.opencontainers.image.description=${{ env.IMAGE_DESC }}
org.opencontainers.image.documentation=https://docs.projectbluefin.io
org.opencontainers.image.source=https://github.com/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}
org.opencontainers.image.source=https://github.com/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}/blob/main/Containerfile
org.opencontainers.image.title=${{ env.IMAGE_NAME }}
org.opencontainers.image.url=https://projectbluefin.io
org.opencontainers.image.vendor=${{ github.repository_owner }}
Expand Down

0 comments on commit 05a8f2d

Please sign in to comment.