Skip to content

Commit

Permalink
Break up steps
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-baily committed Feb 5, 2024
1 parent c5a028a commit 99a0aed
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,17 @@ jobs:
login-server: $ACR_LOGIN_SERVER
username: $ACR_USERNAME
password: ${{ secrets.ACR_PASSWORD }}
- name: Build and push base Docker image
- name: Build base Docker image
run: |
docker-compose build base
- name: Push base Docker image
run: |
docker-compose push base
- name: Build and push GCC12 Docker image
- name: Build GCC12 Docker image
run: |
docker-compose build gcc12
- name: Push GCC12 Docker image
run: |
docker-compose push gcc12
- name: Logout from Azure Container Registry
run: docker logout $ACR_LOGIN_SERVER

0 comments on commit 99a0aed

Please sign in to comment.