File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,11 @@ jobs:
143
143
tags : |
144
144
ghcr.io/labelbox/${{ matrix.package }}:develop
145
145
ghcr.io/labelbox/${{ matrix.package }}:${{ github.sha }}
146
+ - name : Build and push (Develop) Output
147
+ if : github.event_name == 'push'
148
+ run : |
149
+ echo "ghcr.io/labelbox/${{ matrix.package }}:develop" >> "$GITHUB_STEP_SUMMARY"
150
+ echo "ghcr.io/labelbox/${{ matrix.package }}:${{ github.sha }}" >> "$GITHUB_STEP_SUMMARY"
146
151
- name : Build and push (Pull Request)
147
152
if : github.event_name == 'pull_request'
148
153
uses : docker/build-push-action@v5
@@ -155,4 +160,8 @@ jobs:
155
160
linux/amd64
156
161
linux/arm64
157
162
tags : |
158
- ghcr.io/labelbox/${{ matrix.package }}:${{ github.sha }}
163
+ ghcr.io/labelbox/${{ matrix.package }}:${{ github.sha }}
164
+ - name : Build and push (Pull Request) Output
165
+ if : github.event_name == 'pull_request'
166
+ run : |
167
+ echo "ghcr.io/labelbox/${{ matrix.package }}:${{ github.sha }}" >> "$GITHUB_STEP_SUMMARY"
You can’t perform that action at this time.
0 commit comments