-
Notifications
You must be signed in to change notification settings - Fork 3
58 lines (50 loc) · 1.63 KB
/
build-and-push.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
54
55
56
57
58
name: build-push-latest-version
on:
workflow_dispatch:
push:
paths-ignore:
- README.md
- LICENSE
- docker-compose.yml
- docker-compose-multi.yml
branches:
- master
jobs:
build-push-latest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Get version from Dockerfile
id: version_provider
run: |
VERSION=$(grep 'ARG BASE_VERSION' Dockerfile | awk -F= '{print $2}')
echo "BASE_CONTAINER_VERSION=$VERSION" >> "$GITHUB_ENV"
- name: debug
run: |
echo "::debug:: ${{ env.BASE_CONTAINER_VERSION }}"
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm64
push: true
cache-from: type=gha,ref=dcagatay/pwless-pgadmin4
cache-to: type=gha,ref=dcagatay/pwless-pgadmin4,mode=max
tags: |
dcagatay/pwless-pgadmin4:latest
dcagatay/pwless-pgadmin4:${{ env.BASE_CONTAINER_VERSION }}
- name: Update repo description
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: dcagatay/pwless-pgadmin4