Skip to content

Commit 24c50fe

Browse files
davissp14Shaun Davis
andauthored
Quick CI Build test (#36)
Co-authored-by: Shaun Davis <davissp14@Shauns-MacBook-Pro.local>
1 parent 1047d28 commit 24c50fe

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ jobs:
1616
uses: docker/setup-buildx-action@v1
1717
-
1818
name: Login to DockerHub
19-
uses: docker/login-action@v1
19+
uses: docker/login-action@v1
2020
with:
2121
username: ${{ secrets.DOCKERHUB_USERNAME }}
2222
password: ${{ secrets.DOCKERHUB_TOKEN }}
2323
- uses: actions/checkout@v2
2424
with:
2525
fetch-depth: 0
26-
-
26+
-
2727
name: "Fetch latest tag"
2828
id: get-latest-tag
2929
uses: "WyriHaximus/github-action-get-previous-tag@v1"
3030
-
3131
name: Build and push Postgres 12
32-
id: pg12_docker_build
32+
id: docker_build
3333
uses: docker/build-push-action@v2
3434
with:
3535
build-args: |
@@ -43,7 +43,7 @@ jobs:
4343
flyio/postgres:12.5
4444
-
4545
name: Build and push Postgres 13
46-
id: pg_13_docker_build
46+
id: docker_build_13
4747
uses: docker/build-push-action@v2
4848
with:
4949
build-args: |
@@ -56,5 +56,8 @@ jobs:
5656
flyio/postgres:13
5757
flyio/postgres:13.4
5858
-
59-
name: Image digest
60-
run: echo ${{ steps.pg_13_docker_build.outputs.digest }}
59+
name: Postgres 12 Image digest
60+
run: echo ${{ steps.docker_build.outputs.digest }}
61+
-
62+
name: Postgres 13 Image digest
63+
run: echo ${{ steps.docker_build_13.outputs.digest }}

0 commit comments

Comments
 (0)