diff options
author | Eduardo Julian | 2022-04-08 01:49:29 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-04-08 01:49:29 -0400 |
commit | e5e4c2aff562e5c01fefb808d1d68a40f29c9cc5 (patch) | |
tree | 6b56a158a19debc0d3cd1d98e88e2ee91ed8a823 /.github/workflows | |
parent | c85697eee8ce3dac5480a3ba2b31cc4943e1d8e6 (diff) |
Can now deploy releases with Aedifex.
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 .. |