-
Notifications
You must be signed in to change notification settings - Fork 4
53 lines (53 loc) · 1.61 KB
/
deploy-images.yml
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
49
50
51
52
53
name: Create and publish a package
on:
push:
branches: ["main"]
jobs:
build-and-push-psql-image:
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build container image
uses: docker/build-push-action@v2
with:
push: true
file: psql/Dockerfile
tags: |
ghcr.io/tumelohq/psql:latest
build-and-push-gcp-postgres-runner-image:
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build container image
uses: docker/build-push-action@v2
with:
push: true
file: gcp-postgres-runner/Dockerfile
tags: |
ghcr.io/tumelohq/gcp-postgres-runner:latest
build-and-push-amplify-git-lfs-image:
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build container image
uses: docker/build-push-action@v2
with:
push: true
file: amplify-git-lfs/Dockerfile
tags: |
ghcr.io/tumelohq/amplify-git-lfs:latest