push-containers.yml 577 B

123456789101112131415161718192021222324252627
  1. name: Build and Push prebuilt tools container
  2. on:
  3. push:
  4. paths:
  5. - 'include/version.mk'
  6. - 'tools/**'
  7. - '.github/workflows/push-containers.yml'
  8. - 'toolchain/**'
  9. branches-ignore:
  10. - master
  11. permissions:
  12. contents: read
  13. concurrency:
  14. group: ${{ github.workflow }}
  15. cancel-in-progress: true
  16. jobs:
  17. build-push-containers:
  18. name: Build and Push all prebuilt containers
  19. permissions:
  20. contents: read
  21. packages: write
  22. actions: write
  23. uses: openwrt/actions-shared-workflows/.github/workflows/push-containers.yml@main