-
-
Notifications
You must be signed in to change notification settings - Fork 99
39 lines (35 loc) · 893 Bytes
/
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
name: build
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
runs-on: actuated-8cpu-12gb
steps:
- uses: actions/checkout@master
with:
fetch-depth: 1
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v3
- name: Setup mirror
uses: self-actuated/hub-mirror@master
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Local build
id: local_build
uses: docker/build-push-action@v5
with:
outputs: "type=docker,push=false"
platforms: linux/amd64,linux/arm64
build-args: |
Version=dev
GitCommit=${{ github.sha }}
tags: |
ghcr.io/inlets/inlets-operator:${{ github.sha }}