Skip to content

Commit e62ef86

Browse files
author
Adrian Chang
committed
fix context
1 parent 49f60be commit e62ef86

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/lbox-develop.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,11 @@ jobs:
143143
tags: |
144144
ghcr.io/labelbox/${{ matrix.package }}:develop
145145
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"
146151
- name: Build and push (Pull Request)
147152
if: github.event_name == 'pull_request'
148153
uses: docker/build-push-action@v5
@@ -155,4 +160,8 @@ jobs:
155160
linux/amd64
156161
linux/arm64
157162
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"

0 commit comments

Comments
 (0)