-
Notifications
You must be signed in to change notification settings - Fork 31
44 lines (41 loc) · 957 Bytes
/
build-buildx.yml
File metadata and controls
44 lines (41 loc) · 957 Bytes
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
name: build-buildx
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
inputs:
pkgs:
description: 'Packages to build (minimal, all or space separated list)'
default: 'minimal'
required: false
type: string
fail-fast:
description: 'Fail fast'
default: true
required: false
type: boolean
push:
branches:
- 'main'
- 'buildx/[0-9]+.[0-9]+'
paths:
- '.github/workflows/.build.yml'
- '.github/workflows/build-buildx.yml'
- 'common/**'
- 'pkg/buildx/**'
pull_request:
branches:
- 'main'
- 'buildx/[0-9]+.[0-9]+'
paths:
- '.github/workflows/.build.yml'
- '.github/workflows/build-buildx.yml'
- 'common/**'
- 'pkg/buildx/**'
jobs:
run:
uses: ./.github/workflows/.build.yml
with:
name: buildx
secrets: inherit