Skip to content

Commit b32f140

Browse files
authored
Warn on attempts to publish test-ubuntu-git from non-main branch. (#1623)
* Warn on attempts to publish test-ubuntu-git from non-main branch. * Rename build step to clarify that Push is optional.
1 parent 2650dbd commit b32f140

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/update-test-ubuntu-git.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,12 @@ jobs:
4242
# Use `date` with a custom format to achieve the key=value format GITHUB_OUTPUT expects.
4343
run: date -u "+now=%Y%m%d.%H%M%S.%3NZ" >> "$GITHUB_OUTPUT"
4444

45+
- name: Issue Image Publish Warning
46+
if: ${{ inputs.publish && github.ref_name != 'main' }}
47+
run: echo "::warning::test-ubuntu-git images can only be published from the actions/checkout 'main' branch. Workflow will continue with push/publish disabled."
48+
4549
# Use `docker/build-push-action` to build (and optionally publish) the image.
46-
- name: Build and push Docker image
50+
- name: Build Docker Image (with optional Push)
4751
uses: docker/[email protected]
4852
with:
4953
context: .

0 commit comments

Comments
 (0)