2022-12-09 17:09:32 +00:00
|
|
|
name: Build and Push prebuilt tools container
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
2023-05-23 14:56:09 +00:00
|
|
|
- 'include/version.mk'
|
2023-10-04 11:28:58 +00:00
|
|
|
- 'include/cmake.mk'
|
2022-12-09 17:09:32 +00:00
|
|
|
- 'tools/**'
|
|
|
|
- '.github/workflows/push-containers.yml'
|
2022-12-16 23:21:31 +00:00
|
|
|
- 'toolchain/**'
|
2023-05-25 11:52:03 +00:00
|
|
|
branches-ignore:
|
|
|
|
- master
|
2022-12-09 17:09:32 +00:00
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2023-01-24 22:23:56 +00:00
|
|
|
concurrency:
|
2023-10-04 11:27:55 +00:00
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
2023-01-24 22:23:56 +00:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-12-09 17:09:32 +00:00
|
|
|
jobs:
|
2023-06-19 11:55:32 +00:00
|
|
|
build-push-containers:
|
|
|
|
name: Build and Push all prebuilt containers
|
2022-12-16 23:21:31 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
2023-05-28 00:55:26 +00:00
|
|
|
actions: write
|
2023-06-19 11:55:32 +00:00
|
|
|
uses: openwrt/actions-shared-workflows/.github/workflows/push-containers.yml@main
|