Missing push option in the step
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 35s

This commit is contained in:
lolen 2024-05-29 11:20:40 +00:00
parent f7f79a187e
commit a9e745a26c

@ -32,6 +32,7 @@ jobs:
- name: Build and push Docker image for first APP
uses: docker/build-push-action@v4
with:
push: true
file: ./Dockerfile
tags: ${{ steps.meta-first.outputs.tags }}
labels: ${{ steps.meta-first.outputs.labels }}
@ -48,6 +49,7 @@ jobs:
- name: Build and push Docker image for second APP
uses: docker/build-push-action@v4
with:
push: true
file: ./Dockerfile
tags: ${{ steps.meta-second.outputs.tags }}
labels: ${{ steps.meta-second.outputs.labels }}