Skip to content

Commit

Permalink
Warn on attempts to publish test-ubuntu-git from non-main branch. (#…
Browse files Browse the repository at this point in the history
…1623)

* Warn on attempts to publish test-ubuntu-git from non-main branch.
* Rename build step to clarify that Push is optional.
  • Loading branch information
jww3 committed Feb 22, 2024
1 parent 2650dbd commit b32f140
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/update-test-ubuntu-git.yml
Expand Up @@ -42,8 +42,12 @@ jobs:
# Use `date` with a custom format to achieve the key=value format GITHUB_OUTPUT expects.
run: date -u "+now=%Y%m%d.%H%M%S.%3NZ" >> "$GITHUB_OUTPUT"

- name: Issue Image Publish Warning
if: ${{ inputs.publish && github.ref_name != 'main' }}
run: echo "::warning::test-ubuntu-git images can only be published from the actions/checkout 'main' branch. Workflow will continue with push/publish disabled."

# Use `docker/build-push-action` to build (and optionally publish) the image.
- name: Build and push Docker image
- name: Build Docker Image (with optional Push)
uses: docker/build-push-action@v5.1.0
with:
context: .
Expand Down

0 comments on commit b32f140

Please sign in to comment.