-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (38 loc) · 1.06 KB
/
cd.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Build ephemeral-postgres
on:
push:
branches:
- main
pull_request:
schedule:
- cron: "0 0 * * 1"
jobs:
ci:
runs-on: ubuntu-latest
env:
EPHEMERAL_POSTGRES_AUTO_UPDATE: 0
strategy:
matrix:
postgres-version: [
14,
15,
16,
17
]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build ephemeral-postgres ${{ matrix.postgres-version }}
run: ./bin/build-image.sh "${{ matrix.postgres-version }}"
- name: Test ephemeral-postgres ${{ matrix.postgres-version }}
run: ./bin/test-image.sh "${{ matrix.postgres-version }}"
timeout-minutes: 2
- name: Push ephemeral-postgres ${{ matrix.postgres-version }}
if: github.ref_name == 'main'
run: ./bin/push-image.sh "${{ matrix.postgres-version }}"