forked from docker/packaging
-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (41 loc) · 970 Bytes
/
release-containerd.yml
File metadata and controls
44 lines (41 loc) · 970 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: release-containerd
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
inputs:
ref:
description: 'Ref (e.g. v1.6.15)'
required: true
type: string
repo:
description: 'Override default repo'
required: false
type: string
release:
description: 'Release type'
required: false
default: 'pushonly'
type: choice
options:
- pushonly
- draft
- prerelease
- release
distro:
description: 'Single distro to build'
required: false
type: string
default: ''
jobs:
release:
uses: ./.github/workflows/.build.yml
with:
name: containerd
release: ${{ inputs.release }}
distro: ${{ inputs.distro }}
envs: |
PKG_REPO=${{ inputs.repo }}
PKG_REF=${{ inputs.ref }}
secrets: inherit