From 0f2add4c6d98d7b9353ef7d503b3afaadadf3994 Mon Sep 17 00:00:00 2001 From: Ian Chamberlain Date: Mon, 3 Apr 2023 14:01:02 -0400 Subject: [PATCH] Try to fix PATH for devkitarm tools --- .github/actions/setup/action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 1833988..30da46e 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -41,3 +41,8 @@ runs: args: >- --git https://github.com/rust3ds/cargo-3ds --rev 5a06e64307499ffe681453e7d88d7ee986054eb7 + + - name: Set PATH to include devkitARM + shell: bash + # For some reason devkitARM/bin is not part of the default PATH in the container + run: echo "${DEVKITARM}/bin" >> $GITHUB_PATH