-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.github/workflows/build-all.yml: add workflow to build all infra pkgs
- Loading branch information
1 parent
18646e1
commit bc16007
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |