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