Skip to content

Commit b90e058

Browse files
committed
New approach with pushing the images in any case and retagging them once the test is complete.
1 parent 402f2ff commit b90e058

File tree

1 file changed

+40
-25
lines changed

1 file changed

+40
-25
lines changed

.github/workflows/build-and-publish.yml

+40-25
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
name: Docker
22

3-
# This workflow uses actions that are not certified by GitHub.
4-
# They are provided by a third-party and are governed by
5-
# separate terms of service, privacy policy, and support
6-
# documentation.
7-
83
on:
94
schedule:
105
- cron: '18 2 * * *'
@@ -17,7 +12,6 @@ env:
1712
REGISTRY: ghcr.io
1813
IMAGE_NAME: dbsystel/postgresql-partman
1914

20-
2115
jobs:
2216
build:
2317
strategy:
@@ -40,26 +34,21 @@ jobs:
4034
permissions:
4135
contents: read
4236
packages: write
43-
# This is used to complete the identity challenge
44-
# with sigstore/fulcio when running outside of PRs.
4537
id-token: write
4638

4739
steps:
4840
- name: Checkout repository
4941
uses: actions/checkout@v4
5042

5143
# Install the cosign tool except on PR
52-
# https://github.com/sigstore/cosign-installer
5344
- name: Install cosign
5445
if: github.event_name != 'pull_request'
5546
uses: sigstore/cosign-installer@v3.4.0
5647

57-
# Workaround: https://github.com/docker/build-push-action/issues/461
5848
- name: Setup Docker buildx
5949
uses: docker/setup-buildx-action@v3
6050

6151
# Login against a Docker registry except on PR
62-
# https://github.com/docker/login-action
6352
- name: Log into registry ${{ env.REGISTRY }}
6453
if: github.event_name != 'pull_request'
6554
uses: docker/login-action@v3
@@ -69,7 +58,6 @@ jobs:
6958
password: ${{ secrets.GITHUB_TOKEN }}
7059

7160
# Extract metadata (tags, labels) for Docker
72-
# https://github.com/docker/metadata-action
7361
- name: Extract Docker metadata
7462
id: meta
7563
uses: docker/metadata-action@v5
@@ -80,8 +68,7 @@ jobs:
8068
type=raw,value=${{ matrix.postgres_version }},enable=${{ matrix.default == 'true'}}
8169
${{ matrix.postgres_version }}-${{ matrix.major }}
8270
83-
# Build and push Docker image with Buildx (don't push on PR)
84-
# https://github.com/docker/build-push-action
71+
# Build and push Docker image with Buildx, using only the digest
8572
- name: Build and push Docker image
8673
id: build-and-push
8774
uses: docker/build-push-action@v5
@@ -92,22 +79,50 @@ jobs:
9279
PARTMAN_VERSION=${{ matrix.partman_version }}
9380
PARTMAN_CHECKSUM=${{ matrix.partman_checksum }}
9481
platforms: linux/amd64,linux/arm64
95-
push: ${{ github.event_name != 'pull_request' }}
96-
tags: ${{ steps.meta.outputs.tags }}
82+
push: true
83+
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:pipeline
9784
labels: ${{ steps.meta.outputs.labels }}
9885
cache-from: type=gha
9986
cache-to: type=gha,mode=max
10087

88+
# Test the built Docker image using the digest
89+
- name: Test Docker image
90+
env:
91+
POSTGRES_PASSWORD: examplepassword
92+
run: |
93+
DIGEST=${{ steps.build-and-push.outputs.digest }}
94+
docker run -d --name test-db -e POSTGRES_PASSWORD=$POSTGRES_PASSWORD ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}@$DIGEST
95+
sleep 30
96+
docker exec test-db pg_isready -U postgres
97+
docker stop test-db
98+
docker rm test-db
10199
102-
# Sign the resulting Docker image digest except on PRs.
103-
# This will only write to the public Rekor transparency log when the Docker
104-
# repository is public to avoid leaking data. If you would like to publish
105-
# transparency data ev en for private images, pass --force to cosign below.
106-
# https://github.com/sigstore/cosign
100+
# Build and push Docker image with Buildx,this time using the final tags
101+
- name: Build and push Docker image
102+
id: build-and-push
103+
if: github.event_name != 'pull_request'
104+
uses: docker/build-push-action@v5
105+
with:
106+
context: .
107+
build-args: |
108+
POSTGRESQL_VERSION=${{ matrix.postgres_version }}
109+
PARTMAN_VERSION=${{ matrix.partman_version }}
110+
PARTMAN_CHECKSUM=${{ matrix.partman_checksum }}
111+
platforms: linux/amd64,linux/arm64
112+
push: true
113+
tags: ${{ steps.meta.outputs.tags }}
114+
labels: ${{ steps.meta.outputs.labels }}
115+
cache-from: type=gha
116+
cache-to: type=gha,mode=max
117+
118+
# Sign the resulting Docker image digest except on PRs
107119
- name: Sign the published Docker image
108-
if: ${{ github.event_name != 'pull_request' }}
120+
if: github.event_name != 'pull_request'
109121
env:
110122
COSIGN_EXPERIMENTAL: "true"
111-
# This step uses the identity token to provision an ephemeral certificate
112-
# against the sigstore community Fulcio instance.
113-
run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign sign -y {}@${{ steps.build-and-push.outputs.digest }}
123+
run: |
124+
DIGEST=${{ steps.build-and-push.outputs.digest }}
125+
TAGS=$(echo ${{ steps.meta.outputs.tags }} | tr ',' '\n')
126+
for TAG in $TAGS; do
127+
cosign sign -y ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:$TAG
128+
done

0 commit comments

Comments
 (0)