Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
joelsonm committed Jun 20, 2024
1 parent 0a488eb commit 00162af
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build-and-push-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: build and push images

on:
push:
branches: ['main']
branches: ["main"]

jobs:
build-and-push-image:
Expand All @@ -12,21 +12,21 @@ jobs:
strategy:
matrix:
include:
- { postgres: 12, alpine: '3.12' }
- { postgres: 13, alpine: '3.14' }
- { postgres: 14, alpine: '3.16' }
- { postgres: 15, alpine: '3.17' }
- { postgres: 16, alpine: '3.19' }
- { postgres: 12, alpine: "3.12" }
- { postgres: 13, alpine: "3.14" }
- { postgres: 14, alpine: "3.16" }
- { postgres: 15, alpine: "3.17" }
- { postgres: 16, alpine: "3.19" }

steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Check out the code
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3

- name: Log in to DockerHub
uses: docker/login-action@v1
Expand Down

0 comments on commit 00162af

Please sign in to comment.