Skip to content

Commit

Permalink
fix docker tag in ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomdsg committed May 21, 2024
1 parent 0b98d85 commit 71e8281
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ jobs:
# Build and tag your Docker application
- name: Build and tag the Docker image
run: |
docker build . --file Dockerfile --tag ghcr.io/${{ github.repository_owner }}/your-app-name:${{ github.sha }}
docker build . --file Dockerfile --tag ghcr.io/aircentre/julia-web-app-example:${{ github.sha }}
# Push the Docker image to GitHub Container Registry
- name: Push the Docker image to GHCR
run: |
docker push ghcr.io/${{ github.repository_owner }}/your-app-name:${{ github.sha }}
docker push ghcr.io/aircentre/julia-web-app-example:${{ github.sha }}

0 comments on commit 71e8281

Please sign in to comment.