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 228fd67 commit 4cce440Copy full SHA for 4cce440
.github/workflows/_containerTemplate.yml
@@ -74,7 +74,7 @@ jobs:
74
- name: Login Container Registry
75
uses: docker/login-action@v3.0.0
76
id: registry_login
77
- if: github.event_name != 'pull_request'
+ # if: github.event_name != 'pull_request'
78
with:
79
registry: ${{ inputs.registry_uri }}
80
username: ${{ secrets.USER_NAME }}
@@ -101,7 +101,7 @@ jobs:
101
102
context: ${{ inputs.working_directory }}
103
file: ${{ inputs.working_directory }}/Dockerfile
104
- push: ${{ github.event_name != 'pull_request' }}
+ push: true # ${{ github.event_name != 'pull_request' }}
105
tags: ${{ steps.metadata.outputs.tags }}
106
labels: ${{ steps.metadata.outputs.labels }}
107
cache-from: type=gha
0 commit comments