-
Notifications
You must be signed in to change notification settings - Fork 9
99 lines (83 loc) · 3.48 KB
/
build-and-publish.yaml
File metadata and controls
99 lines (83 loc) · 3.48 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
name: Build and Push Docker image
on:
push:
branches:
- main
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened, edited]
release:
types: [published]
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
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set Docker image tags and build args
id: docker_tags
run: |
TAGS="ghcr.io/obeone/crawler-to-md:latest\ndocker.io/obeoneorg/crawler-to-md:latest"
if [ "${{ github.event_name }}" = "release" ] && [ -n "${{ github.event.release.tag_name }}" ]; then
TAGS="$TAGS\nghcr.io/obeone/crawler-to-md:${{ github.event.release.tag_name }}\ndocker.io/obeoneorg/crawler-to-md:${{ github.event.release.tag_name }}"
fi
APP_VERSION=0.0.0
if [ "${{ github.event_name }}" = "release" ] && [ -n "${{ github.event.release.tag_name }}" ]; then
APP_VERSION=${{ github.event.release.tag_name }}
fi
echo "tags<<EOF" >> $GITHUB_OUTPUT
echo -e "$TAGS" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
echo "build_args<<EOF" >> $GITHUB_OUTPUT
echo -e "APP_VERSION=$APP_VERSION" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
- name: Log in to Docker Hub
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/main'
uses: docker/login-action@v2
with:
registry: docker.io
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
id: docker_build
with:
context: .
file: ./Dockerfile
push: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/main') || (github.event_name == 'workflow_dispatch') || github.event_name == 'release' }}
cache-from: type=gha
cache-to: type=gha,mode=max
tags: ${{ steps.docker_tags.outputs.tags }}
build-args: ${{ steps.docker_tags.outputs.build_args }}
platforms: linux/amd64,linux/arm64
- name: Set up cosign
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: sigstore/cosign-installer@v3
- name: Sign the container image with cosign
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
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.docker_build.outputs.digest }}
- name: Update Docker Hub description
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: obeoneorg/crawler-to-md