You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
712 B
YAML
33 lines
712 B
YAML
name: build
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
- 'test/github-actions'
|
|
|
|
jobs:
|
|
build-core:
|
|
strategy:
|
|
matrix:
|
|
subimage: ["core"]
|
|
uses: ./.github/workflows/build-subimage.yml
|
|
with:
|
|
subimage: ${{ matrix.subimage }}
|
|
secrets:
|
|
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
build-rest:
|
|
strategy:
|
|
matrix:
|
|
subimage: ["dinglehopper"]
|
|
uses: ./.github/workflows/build-subimage.yml
|
|
with:
|
|
subimage: ${{ matrix.subimage }}
|
|
secrets:
|
|
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|