Merge pull request #149 from crazy-max/bump-go #244
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-containerd | |
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' | |
- 'containerd/[0-9]+.[0-9]+' | |
paths: | |
- '.github/workflows/.build.yml' | |
- '.github/workflows/build-containerd.yml' | |
- 'common/**' | |
- 'pkg/containerd/**' | |
pull_request: | |
branches: | |
- 'main' | |
- 'containerd/[0-9]+.[0-9]+' | |
paths: | |
- '.github/workflows/.build.yml' | |
- '.github/workflows/build-containerd.yml' | |
- 'common/**' | |
- 'pkg/containerd/**' | |
jobs: | |
run: | |
uses: ./.github/workflows/.build.yml | |
with: | |
name: containerd | |
secrets: inherit |