Skip to content

Commit

Permalink
feat: properly tag different platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
oskardotglobal committed Jan 26, 2024
1 parent 791597a commit f0cbc04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
uses: redhat-actions/buildah-build@v2
with:
image: postgres-autoconf
tags: ${{ matrix.pg_version }}-alpine ${{ matrix.pg_version == env.LATEST_RELEASE && 'latest' }}
tags: ${{ matrix.pg_version }}-alpine${{ matrix.platform != 'amd64' && '-' + matrix.platform || '' }}${{ matrix.pg_version == env.LATEST_RELEASE && ' latest' || '' }}${{ matrix.pg_version == env.LATEST_RELEASE && matrix.platform != 'amd64' && '-' + matrix.platform || '' }}
context: .
platforms: linux/${{ matrix.platform }}
containerfiles: |
Expand Down

0 comments on commit f0cbc04

Please sign in to comment.