Skip to content

Commit

Permalink
Add names to steps for Docker build and Docker push
Browse files Browse the repository at this point in the history
  • Loading branch information
DanRStevens committed Oct 29, 2024
1 parent 79103f7 commit fb3b603
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/dockerBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- run: make -C docker build-image-${{ matrix.platform }}
- name: Docker build
run: make -C docker build-image-${{ matrix.platform }}

- name: Docker login
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io --username "${{ github.repository_owner }}" --password-stdin

- run: make -C docker push-image-${{ matrix.platform }}
- name: Docker push
run: make -C docker push-image-${{ matrix.platform }}

0 comments on commit fb3b603

Please sign in to comment.