-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (50 loc) · 1.69 KB
/
docker-publish.yml
File metadata and controls
58 lines (50 loc) · 1.69 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
name: Docker Publish
on:
push:
branches:
- main # Publishes :latest
tags:
- '*.*.*' # Publishes semver tag (e.g. 0.2.0) + re-tags as :latest
env:
REGISTRY: ghcr.io
IMAGE_NAME: 100monkeys-ai/aegis-temporal-worker
jobs:
build-and-push:
name: Build & Push Docker Image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
# Push :latest on every push to main
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }}
# Push semver tag (v1.2.3 → 1.2.3) and also :latest on tag push
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
# Push short SHA for traceability on main branch
type=sha,prefix=sha-,enable=${{ github.ref == 'refs/heads/main' }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}