We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a01f7c commit 6852a1dCopy full SHA for 6852a1d
.github/workflows/build-docker-image.yml
@@ -43,7 +43,7 @@ jobs:
43
username: ${{ github.repository_owner }}
44
password: ${{ secrets.GITHUB_TOKEN }}
45
46
- - name: Build and push
+ - name: Build and push sqlite
47
uses: docker/build-push-action@v6
48
with:
49
context: .
@@ -53,3 +53,15 @@ jobs:
53
labels: ${{ steps.meta.outputs.labels }}
54
cache-from: type=gha
55
cache-to: type=gha,mode=max
56
+
57
+ - name: Build and push postgresql
58
+ uses: docker/build-push-action@v6
59
+ with:
60
+ context: .
61
+ platforms: linux/amd64,linux/arm64
62
+ push: true
63
+ tags: postgresql-${{ steps.meta.outputs.tags }}
64
+ labels: ${{ steps.meta.outputs.labels }}
65
+ build-args: "DB_DATASOURCE=postgresql"
66
+ cache-from: type=gha
67
+ cache-to: type=gha,mode=max
0 commit comments