diff options
author | Eduardo Julian | 2022-04-07 14:57:35 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-04-07 14:57:35 -0400 |
commit | c85697eee8ce3dac5480a3ba2b31cc4943e1d8e6 (patch) | |
tree | 50db3f6547b0ad765e6b47e65546f30ad8861c0b /.github/workflows/setup_aedifex | |
parent | 9224e54bf175ebe13c3fae42f04b649413c737e7 (diff) |
Better snapshot deployments for Aedifex.
Diffstat (limited to '.github/workflows/setup_aedifex')
-rw-r--r-- | .github/workflows/setup_aedifex/action.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/setup_aedifex/action.yml b/.github/workflows/setup_aedifex/action.yml index 873623b2f..e9d904779 100644 --- a/.github/workflows/setup_aedifex/action.yml +++ b/.github/workflows/setup_aedifex/action.yml @@ -10,15 +10,15 @@ runs: distribution: 'temurin' java-version: '17' - # Presumably, whoever invokes this action already has done a checkout. + # Presumably, whoever invokes this action has already done a checkout. # - uses: actions/checkout@v2 - - run: wget https://github.com/LuxLang/lux/releases/download/0.6.5/aedifex_do_not_touch_4.jar && mv aedifex_do_not_touch_4.jar aedifex.jar + - 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: mv ./shell/lux.sh ./lux.sh + - run: PATH="$PATH:./shell" shell: bash - - run: cd ./stdlib/ && ../lux.sh clean && cd .. + - run: cd ./stdlib/ && lux clean && cd .. shell: bash |