Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
noam987 committed Jun 28, 2024
1 parent ace7549 commit 047a035
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
uses: actions/cache/restore@v4
with:
path:
$(pwd)/gcc-arm-none-eabi-${TOOLCHAIN_UPDATE}
$(pwd)/gcc-arm-none-eabi-${{env.TOOLCHAIN_UPDATE}}
key:
gcc-arm-non-eabi-${TOOLCHAIN_UPDATE}
gcc-arm-non-eabi-${{env.TOOLCHAIN_UPDATE}}

- name: Install gcc-arm-embedded
if: steps.cache-gcc.outputs.cache-hit != 'true'
Expand All @@ -43,9 +43,9 @@ jobs:
uses: actions/cache/save@v4
with:
path:
gcc-arm-none-eabi-${TOOLCHAIN_UPDATE}
gcc-arm-none-eabi-${{env.TOOLCHAIN_UPDATE}}
key:
gcc-arm-none-eabi-${TOOLCHAIN_UPDATE}
gcc-arm-none-eabi-${{env.TOOLCHAIN_UPDATE}}

- name: Add gcc-arm-embedded to path
run: echo "$(pwd)/gcc-arm-none-eabi-${TOOLCHAIN_UPDATE}/bin" >> $GITHUB_PATH
Expand All @@ -71,3 +71,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
path: artifacts/kernel@*.zip
compression-level: 0

0 comments on commit 047a035

Please sign in to comment.