Skip to content

Commit

Permalink
move checkout after build and before save artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-silabs committed Jan 17, 2025
1 parent f4e0831 commit 84bef25
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/sqa-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

Expand Down

0 comments on commit 84bef25

Please sign in to comment.