Skip to content

Commit 8990608

Browse files
committed
Build the docker images on push (tags & latest)
1 parent 6d43dbf commit 8990608

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: Docker build and publish
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
tags:
8+
- 'v*'
9+
10+
env:
11+
GITHUB_OWNER: 'moodlehq'
12+
REPOSITORY: 'wiki-rag'
13+
14+
jobs:
15+
Build-and-Publish:
16+
# Completely avoid forks and pull requests to try this job.
17+
if: github.repository_owner == 'moodlehq' && contains(fromJson('["push"]'), github.event_name)
18+
runs-on: ubuntu-latest
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v4
22+
with:
23+
fetch-depth: 0 # Fetch all history for tags (we need that for setuptools-scm to find the version)
24+
25+
- name: Calculate image tags and labels
26+
id: calculatetags
27+
uses: docker/metadata-action@v5
28+
with:
29+
images: |
30+
ghcr.io/${{ env.GITHUB_OWNER }}/${{ env.REPOSITORY }}
31+
tags: |
32+
type=pep440,pattern={{version}}
33+
type=pep440,pattern={{major}}.{{minor}}
34+
type=raw,value=latest,enable={{is_default_branch}}
35+
36+
- name: Set up QEMU
37+
uses: docker/setup-qemu-action@v3
38+
39+
- name: Set up Docker Buildx
40+
uses: docker/setup-buildx-action@v3
41+
42+
- name: Login to GitHub Container Registry
43+
uses: docker/login-action@v3
44+
with:
45+
registry: ghcr.io
46+
username: ${{ github.actor }}
47+
password: ${{ secrets.GITHUB_TOKEN }}
48+
49+
- name: Build and publish to GitHub registry
50+
uses: docker/build-push-action@v5
51+
with:
52+
context: .
53+
platforms: linux/amd64,linux/arm64
54+
push: true
55+
provenance: false
56+
tags: ${{ steps.calculatetags.outputs.tags }}
57+
labels: ${{ steps.calculatetags.outputs.labels }}

0 commit comments

Comments
 (0)