From 882dbfa86c24128c3864e4a912c9e9c40b4d2e9f Mon Sep 17 00:00:00 2001 From: mike cullerton Date: Thu, 12 Sep 2024 12:35:50 -0400 Subject: [PATCH] Added some echo statements --- .github/workflows/build_image_from_dev.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build_image_from_dev.yml b/.github/workflows/build_image_from_dev.yml index 61c41ea8..0b0d07fc 100644 --- a/.github/workflows/build_image_from_dev.yml +++ b/.github/workflows/build_image_from_dev.yml @@ -73,6 +73,10 @@ jobs: packages: write steps: + - run: echo "This job was triggered by a ${{ github.event_name }} event." + - run: echo "The branch is ${{ github.ref }} and the repository is ${{ github.repository }}." + - run: echo "Tags are ${{ steps.meta.outputs.tags }} " + - run: echo "Labes are ${{ steps.meta.outputs.labels }} " - name: Checkout repository uses: actions/checkout@v4 with: @@ -96,6 +100,7 @@ jobs: uses: docker/build-push-action@v4 with: context: . + ref: dev push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}