-
-
Notifications
You must be signed in to change notification settings - Fork 4
88 lines (77 loc) · 2.68 KB
/
publish-x86.yml
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
name: Docker AMD64
on:
push:
paths:
- container/**
- .github/workflows/*
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=tag
type=match,pattern=\d.\d
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
labels: |
org.opencontainers.image.authors=Denis Roio <[email protected]>, Puria Nafisi Azizi <[email protected]>
org.opencontainers.image.vendor=Dyne.org
- name: Log in Docker Hub
uses: docker/login-action@v1
if: github.event_name != 'pull_request'
with:
username: dyne
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Log in to the Container registry
uses: docker/login-action@v1
if: github.event_name != 'pull_request'
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Parse config
id: conf
run: |
args=$(cat config.mk | awk -F " := " '!/^#/ && length($1) > 0 {print $1"="$2}')
args="${args//'%'/'%25'}"
args="${args//$'\n'/'%0A'}"
args="${args//$'\r'/'%0D'}"
echo $args
echo ::set-output name=buildargs::$args
- name: Tag version
id: version
run: |
args=$(find devops -type f -print0 | sort -z | xargs -0 sha1sum | sha1sum | awk '{print $1}')
echo "Tagging version: $args"
echo ::set-output name=tag::$args
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build and push Docker image
uses: docker/build-push-action@v2
if: github.event_name != 'pull_request'
with:
context: ./container/
build-args: ${{ steps.conf.outputs.buildargs }}
push: true
platforms: linux/amd64
labels: ${{ steps.meta.outputs.labels }}
tags: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.version.outputs.tag }}
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
${{ env.IMAGE_NAME }}:${{ steps.version.outputs.tag }}
${{ env.IMAGE_NAME }}:latest