fully unwind & parallelize loop
This commit is contained in:
parent
76234b4a1e
commit
c841e76c7e
2 changed files with 28 additions and 23 deletions
9
.github/workflows/build-images.yml
vendored
9
.github/workflows/build-images.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: Deploy multi-architecture Docker images for privatebin with buildx
|
||||
name: Build & Deploy container image
|
||||
|
||||
on:
|
||||
schedule:
|
||||
|
@ -15,8 +15,9 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
image: [stable, edge]
|
||||
name: Build images based on ${{ matrix.image }} Alpine release
|
||||
base-image: [stable, edge]
|
||||
destination-image: [nginx-fpm-alpine, fs, pdo, gcs]
|
||||
name: ${{ matrix.destination-image }} image / ${{ matrix.base-image }} release
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
@ -32,4 +33,4 @@ jobs:
|
|||
env:
|
||||
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
|
||||
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
|
||||
run: ./buildx.sh ${{ github.event_name }} ${{ matrix.image }}
|
||||
run: ./buildx.sh ${{ github.event_name }} ${{ matrix.destination-image }} ${{ matrix.base-image }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue