-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (50 loc) · 1.6 KB
/
build-and-publish.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
49
50
51
52
53
54
55
56
57
58
59
name: Build and Push Docker image
on:
push:
branches:
- main
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write # For cosign
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push to GHCR and Docker Hub
uses: docker/build-push-action@v5
id: build-and-push
with:
context: .
file: ./Dockerfile
push: true
cache-from: type=gha
cache-to: type=gha,mode=max
tags: |
ghcr.io/obeone/crawler-to-md:latest
docker.io/obeoneorg/crawler-to-md:latest
platforms: linux/amd64,linux/arm64,linux/i386,linux/armhf
- name: Set up cosign
uses: sigstore/cosign-installer@v3
- name: Sign the container image with cosign
run: |
cosign sign --yes ghcr.io/obeone/crawler-to-md@${DIGEST}
cosign sign --yes docker.io/obeoneorg/crawler-to-md@${DIGEST}
env:
COSIGN_EXPERIMENTAL: true
DIGEST: ${{ steps.build-and-push.outputs.digest }}