Skip to content

Commit

Permalink
[CI] Fix steps order
Browse files Browse the repository at this point in the history
  • Loading branch information
jgromes committed Jan 23, 2025
1 parent d0cfd5a commit c6096ad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,10 @@ jobs:
cd $PWD/extras/test/ci
./build_examples.sh ${{ matrix.id }} "${{ steps.prep.outputs.skip-pattern }}" ${{ steps.prep.outputs.options }}

- name: Extract short commit hash
id: short-hash
run: echo "::set-output name=short_sha::$(git rev-parse --short HEAD)"

- name: Parse sizes
if: ${{ env.run-build == 'true' }}
run:
Expand All @@ -193,10 +197,6 @@ jobs:
./parse_size.sh ${{ matrix.id }}
cat size_${{ steps.short-hash.outputs.short_sha }}_${{ steps.split.outputs._0 }}-${{ steps.split.outputs._1 }}-${{ steps.split.outputs._2 }}.csv

- name: Extract short commit hash
id: short-hash
run: echo "::set-output name=short_sha::$(git rev-parse --short HEAD)"

- name: Upload size report as artifact
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit c6096ad

Please sign in to comment.