diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/setup_aedifex/action.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/setup_aedifex/action.yml b/.github/workflows/setup_aedifex/action.yml index e9d904779..a571dea74 100644 --- a/.github/workflows/setup_aedifex/action.yml +++ b/.github/workflows/setup_aedifex/action.yml @@ -13,10 +13,12 @@ runs: # Presumably, whoever invokes this action has already done a checkout. # - uses: actions/checkout@v2 + # Install Aedifex - run: wget https://github.com/LuxLang/lux/releases/download/0.6.5/aedifex_do_not_touch_5.jar && mv aedifex_do_not_touch_5.jar aedifex.jar shell: bash - - run: PATH="$PATH:./shell" + # Make the `lux` command available. + - run: echo "$HOME/shell" >> $GITHUB_PATH shell: bash - run: cd ./stdlib/ && lux clean && cd .. |