We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e3f16b commit 1183bc4Copy full SHA for 1183bc4
1 file changed
.github/workflows/build-image.yaml
@@ -12,6 +12,7 @@ on:
12
pull_request:
13
branches:
14
- main
15
+ - phase-3-improvements
16
17
env:
18
REGISTRY: ghcr.io
@@ -33,7 +34,7 @@ jobs:
33
34
35
- name: Log in to Container Registry
36
# Only login when pushing (not on PRs)
- if: github.event_name != 'pull_request'
37
+ # if: github.event_name != 'pull_request'
38
uses: docker/login-action@v3
39
with:
40
registry: ${{ env.REGISTRY }}
@@ -61,7 +62,7 @@ jobs:
61
62
63
context: .
64
# Only push on main branch or tags, NOT on PRs
- push: ${{ github.event_name != 'pull_request' }}
65
+ # push: ${{ github.event_name != 'pull_request' }}
66
# push: true
67
tags: ${{ steps.meta.outputs.tags }}
68
labels: ${{ steps.meta.outputs.labels }}
0 commit comments