Ch07 Image Builds #3613
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
name: Ch07 Image Builds | |
on: | |
push: | |
paths: | |
- ".github/workflows/ch07.yaml" | |
- "ch07/docker-images/**" | |
schedule: | |
- cron: "0 7 * * 0" | |
jobs: | |
build-amd64: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: azure/docker-login@v1 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
- name: ch07 | |
working-directory: ./ch07/docker-images | |
run: | | |
docker-compose -f docker-compose.yml -f amd64.yml build --pull | |
docker-compose -f docker-compose.yml -f amd64.yml push | |
build-arm64: | |
runs-on: [self-hosted, Linux, ARM64, docker] | |
steps: | |
- uses: actions/checkout@master | |
- uses: azure/docker-login@v1 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
- name: ch07 | |
working-directory: ./ch07/docker-images | |
run: | | |
docker compose -f docker-compose.yml -f arm64.yml build --pull | |
docker compose -f docker-compose.yml -f arm64.yml push | |
push-manifests: | |
runs-on: ubuntu-latest | |
needs: ['build-amd64', 'build-arm64'] | |
steps: | |
- uses: actions/checkout@master | |
- uses: azure/docker-login@v1 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
- name: ch07 | |
working-directory: ./ch07/docker-images | |
run: | | |
./push-manifests.ps1 | |
shell: pwsh |