aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/setup_aedifex/action.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/setup_aedifex/action.yml')
-rw-r--r--.github/workflows/setup_aedifex/action.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/setup_aedifex/action.yml b/.github/workflows/setup_aedifex/action.yml
index bc848c2f0..fa70014a3 100644
--- a/.github/workflows/setup_aedifex/action.yml
+++ b/.github/workflows/setup_aedifex/action.yml
@@ -1,3 +1,5 @@
+# https://cardinalby.github.io/blog/post/github-actions/dry-reusing-code-in-github-actions/
+# https://docs.github.com/en/actions/creating-actions/creating-a-composite-action
name: 'Setup Aedifex'
runs:
using: "composite"
@@ -8,7 +10,8 @@ runs:
distribution: 'temurin'
java-version: '17'
- - uses: actions/checkout@v2
+ # Presumably, whoever invokes this action already has done a checkout.
+ # - uses: actions/checkout@v2
- run: wget https://github.com/LuxLang/lux/releases/download/0.6.5/aedifex_do_not_touch_3.jar && mv aedifex_do_not_touch_3.jar aedifex.jar
shell: bash