-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (45 loc) · 1.23 KB
/
build.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
name: Build
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- id: tags
name: Calculate tags
shell: bash
run: |
prefix=ghcr.io/${{ github.repository }}
echo "TAGS<<##" >> "$GITHUB_OUTPUT"
ref=${{ github.ref }}
case "$ref" in
refs/heads/main)
echo "$prefix:latest" >> "$GITHUB_OUTPUT";;
refs/tags/v[0-9]*)
echo "$prefix:${ref#refs/tags/}" >> "$GITHUB_OUTPUT";;
*)
echo "$prefix:${{ github.sha }}" >> "$GITHUB_OUTPUT";;
esac
echo "##" >> "$GITHUB_OUTPUT"
- uses: docker/setup-qemu-action@v3
with:
platforms: amd64,arm64
- uses: docker/setup-buildx-action@v3
with:
platforms: |
linux/amd64
linux/arm64
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@v6
with:
platforms: |
linux/amd64
linux/arm64
push: true
tags: ${{ steps.tags.outputs.TAGS }}