focus on the ubuntu24.04 build #173
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: Update Docker Images | |
on: | |
push: | |
paths: | |
- '**/Dockerfile' | |
- '!ci-builders/**' | |
jobs: | |
build: | |
name: Build changed Dockerfiles | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: azure/docker-login@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and push updated Docker containers | |
run: .github/workflows/scripts/build-changed-dockerfiles.sh "${{ github.sha }}" |