-
Notifications
You must be signed in to change notification settings - Fork 26
56 lines (54 loc) · 1.51 KB
/
master.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
name: Master workflow
on:
push:
branches: [ master ]
jobs:
docker:
name: Test and build Docker images
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
config-inline: |
[registry."docker.io"]
mirrors = ["mirror.gcr.io"]
- name: Login to GitHub container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to Gitea container registry
uses: docker/login-action@v3
with:
registry: git.jlel.se
username: nologin
password: ${{ secrets.GITEA_TOKEN }}
- name: Test
uses: docker/build-push-action@v6
with:
push: false
target: test
tags: test
- name: Build base image
uses: docker/build-push-action@v6
with:
push: true
target: base
tags: ghcr.io/jlelse/goblog:latest,git.jlel.se/jlelse/goblog:latest
provenance: false
- name: Build tools image
uses: docker/build-push-action@v6
with:
push: true
target: tools
tags: ghcr.io/jlelse/goblog:tools,git.jlel.se/jlelse/goblog:tools
provenance: false
- name: Delete old untagged images
uses: camargo/delete-untagged-action@v1
with:
github-token: ${{ secrets.DELETE_PACKAGES_TOKEN }}
personal-account: true