From 84bef25f59cd71f353e140f52196c915e14e3550 Mon Sep 17 00:00:00 2001 From: stlivada Date: Fri, 17 Jan 2025 14:43:56 -0500 Subject: [PATCH] move checkout after build and before save artifact name --- .github/workflows/sqa-build.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sqa-build.yaml b/.github/workflows/sqa-build.yaml index e7f2d002..09a37175 100644 --- a/.github/workflows/sqa-build.yaml +++ b/.github/workflows/sqa-build.yaml @@ -22,8 +22,6 @@ jobs: family: [ series-2 ] addAppComponent: [ ', toolchain_gcc_lto' ] steps: - - name: Checkout - uses: actions/checkout@v4 - name: ${{ matrix.app }}-${{ matrix.suffix }} ${{ matrix.addAppComponent}} ${{ matrix.board }} ${{ matrix.appType }} uses: ./.github/workflows/generate-and-build.yaml with: @@ -37,6 +35,10 @@ jobs: technology: OpenThread workflow_name: 'SQA Build' artifact_path: ${{ matrix.appType }}_${{ matrix.board }}_${{ matrix.technology }}_${{ matrix.app }} + + - name: Checkout + uses: actions/checkout@v4 + - name: Save Artifact Name run: echo "ARTIFACT_${{ matrix.appType }}_${{ matrix.board }}_${{ matrix.technology }}_${{ matrix.app }}=${{ matrix.appType }}_${{ matrix.board }}_${{ matrix.technology }}_${{ matrix.app }}" >> $GITHUB_ENV