mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-18 21:28:02 +00:00
b40c0b54bd
Refresh containers also on modify of cmake options in the include file. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
29 lines
622 B
YAML
29 lines
622 B
YAML
name: Build and Push prebuilt tools container
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'include/version.mk'
|
|
- 'include/cmake.mk'
|
|
- 'tools/**'
|
|
- '.github/workflows/push-containers.yml'
|
|
- 'toolchain/**'
|
|
branches-ignore:
|
|
- master
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build-push-containers:
|
|
name: Build and Push all prebuilt containers
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
actions: write
|
|
uses: openwrt/actions-shared-workflows/.github/workflows/push-containers.yml@main
|