Skip to content

Commit

Permalink
.github/workflows/build-all.yml: add workflow to build all infra pkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
classabbyamp authored and the-maldridge committed Aug 12, 2023
1 parent 18646e1 commit bc16007
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build-all.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build all service containers
on:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
main:
strategy:
fail-fast: false
matrix:
service:
- alps
- debuginfod
- lego
- man-cgi
- nginx
- rspamd
- rsync
- sftpgo
- xmandump

uses: ./.github/workflows/build-pkg.yml
with:
service_name: ${{ matrix.service }}

0 comments on commit bc16007

Please sign in to comment.