From aebb51410a9731cbb58de604457b93dfe64ecfef Mon Sep 17 00:00:00 2001 From: DaniloMilenkovic Date: Wed, 20 Nov 2024 08:45:36 +0100 Subject: [PATCH] Update sdkAutomation.yaml --- .github/workflows/sdkAutomation.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sdkAutomation.yaml b/.github/workflows/sdkAutomation.yaml index 14ff1d15c..57fd35dec 100644 --- a/.github/workflows/sdkAutomation.yaml +++ b/.github/workflows/sdkAutomation.yaml @@ -239,7 +239,7 @@ jobs: # Aquire the asset that we just generated with the sdk_automation script - name: Fetch asset if: steps.check-asset-existence.outcome != 'success' - run: gh release download --repo MikroElektronika/sdk_automation latest --pattern 'generated_files_${{ steps.upper-mcu-name.outputs. }}.zip' + run: gh release download --repo MikroElektronika/sdk_automation latest --pattern 'generated_files_${{ steps.upper-mcu-name.outputs.mcu_name }}.zip' env: GH_TOKEN: ${{ secrets.MIKROE_ACTIONS_KEY }} @@ -247,9 +247,9 @@ jobs: - name: Move to the created directory unzip and distribute files id: move_files run: | - sudo mv generated_files_${{ steps.upper-mcu-name.outputs. }}.zip automatization/ + sudo mv generated_files_${{ steps.upper-mcu-name.outputs.mcu_name }}.zip automatization/ cd automatization - unzip generated_files_${{ steps.upper-mcu-name.outputs. }}.zip + unzip generated_files_${{ steps.upper-mcu-name.outputs.mcu_name }}.zip mkdir -p ../${{ github.event.inputs.architecture }}/gcc_clang/def/${{ github.event.inputs.vendor }}/${{ steps.upper-mcu-name.outputs.mcu_name }} mkdir -p ../${{ github.event.inputs.architecture }}/gcc_clang/interrupts/include/interrupts_mcu/${{ steps.upper-mcu-name.outputs.mcu_name }}