We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce90833 commit d9be750Copy full SHA for d9be750
.github/workflows/push-docker-image.yml
@@ -40,8 +40,12 @@ jobs:
40
docker build -t awesome-fastapi:${{ github.sha }} .
41
docker run -d -p 8080:8080 awesome-fastapi:${{ github.sha }}
42
43
+ - name: Docker inspect
44
+ run: |
45
+ docker inspect ghcr.io/${{ env.IMAGE_NAME }}
46
+
47
# Push the Docker image to the registry
48
- name: Push Docker Image to GHCR
49
run: |
- docker push ghcr.io/${{ env.IMAGE_NAME }}:testing
50
+ docker push ghcr.io/${{ env.IMAGE_NAME }}
51
0 commit comments