From b50a688adddddedba6c8c715ba749c1e48aa05a0 Mon Sep 17 00:00:00 2001 From: cytopia Date: Fri, 25 Mar 2022 14:01:09 +0100 Subject: [PATCH] show debug --- .github/workflows/aaa-build.yml | 12 ++++++++++++ .github/workflows/aaa-reuse-configure.yml | 11 ++++++----- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.github/workflows/aaa-build.yml b/.github/workflows/aaa-build.yml index 64671f3..9982436 100644 --- a/.github/workflows/aaa-build.yml +++ b/.github/workflows/aaa-build.yml @@ -31,6 +31,18 @@ jobs: dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }} dockerhub_password: ${{ secrets.DOCKERHUB_PASSWORD }} + debug: + needs: [configure] + name: Debug + runs-on: ubuntu-latest + steps: + - name: "[DEBUG] Show configure outputs" + shell: bash + run: | + echo 'matrix_build=${{ needs.configure.outputs.matrix_build }}' + echo 'has_refs=${{ needs.configure.outputs.has_refs }}' + echo 'artifact_prefix=${{ needs.configure.outputs.artifact_prefix }}' + # (2/2) Build 'base' base: needs: [params, configure] diff --git a/.github/workflows/aaa-reuse-configure.yml b/.github/workflows/aaa-reuse-configure.yml index 6d9422e..e749c34 100644 --- a/.github/workflows/aaa-reuse-configure.yml +++ b/.github/workflows/aaa-reuse-configure.yml @@ -1,3 +1,4 @@ +--- name: Configure Pipeline for multi-arch image build on: @@ -110,13 +111,13 @@ jobs: PRE_RAND="$( echo $RANDOM | md5sum | head -c 10 )" echo "::set-output name=prefix::${PRE_DATE}-${PRE_RAND}" - - name: "[DEBUG] SHow Workflow Inputs" + - name: "[DEBUG] Show Workflow Inputs" shell: bash run: | - echo 'enabled: ${{ inputs.enabled }} ' - echo 'can_deploy: ${{ inputs.can_deploy }} ' - echo 'matrix: ${{ inputs.matrix }} ' - echo 'refs: ${{ inputs.refs }} ' + echo 'enabled: ${{ inputs.enabled }}' + echo 'can_deploy: ${{ inputs.can_deploy }}' + echo 'matrix: ${{ inputs.matrix }}' + echo 'refs: ${{ inputs.refs }}' - name: "[DEBUG] Show Determined Settings" shell: bash