Skip to content

Commit 4b3a721

Browse files
author
Daniel Pimenta
committed
Fix ci workflow
1 parent ee08971 commit 4b3a721

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/docker-publish-develop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
uses: docker/build-push-action@ac9327eae2b366085ac7f6a2d02df8aa8ead720a
7777
with:
7878
context: .
79-
file: ./Dockerfile.develop
79+
file: ./Dockerfile
8080
push: ${{ github.event_name != 'pull_request' }}
8181
tags: ${{ steps.meta.outputs.tags }}
8282
labels: ${{ steps.meta.outputs.labels }}
@@ -95,4 +95,4 @@ jobs:
9595
COSIGN_EXPERIMENTAL: "true"
9696
# This step uses the identity token to provision an ephemeral certificate
9797
# against the sigstore community Fulcio instance.
98-
run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign sign {}@${{ steps.build-and-push.outputs.digest }}
98+
run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign sign {}@${{ steps.build-and-push.outputs.digest }}

.github/workflows/docker-publish-master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
uses: docker/build-push-action@ac9327eae2b366085ac7f6a2d02df8aa8ead720a
7777
with:
7878
context: .
79-
file: ./Dockerfile.production
79+
file: ./Dockerfile
8080
push: ${{ github.event_name != 'pull_request' }}
8181
tags: ${{ steps.meta.outputs.tags }}
8282
labels: ${{ steps.meta.outputs.labels }}
@@ -95,4 +95,4 @@ jobs:
9595
COSIGN_EXPERIMENTAL: "true"
9696
# This step uses the identity token to provision an ephemeral certificate
9797
# against the sigstore community Fulcio instance.
98-
run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign sign {}@${{ steps.build-and-push.outputs.digest }}
98+
run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign sign {}@${{ steps.build-and-push.outputs.digest }}

0 commit comments

Comments
 (0)