Skip to content

Commit 7668981

Browse files
committed
Fix gh action
1 parent 4bee64f commit 7668981

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ runs:
3737
GITHUB_ACTION_PATH: ${{ github.action_path }}
3838
- name: Setup AMM
3939
run: |
40-
lua $GITHUB_ACTION_PATH/fin_env/loader.lua $FLAGS -- "ammcore.bin.installPackages repo=$GITHUB_REPO tag=$GITHUB_REF logLevel=Trace"
40+
lua $GITHUB_ACTION_PATH/fin_env/loader.lua $FLAGS -- ".install repo=$GITHUB_REPO tag=$GITHUB_REF logLevel=Trace"
4141
shell: bash
4242
env:
4343
GITHUB_ACTION_PATH: ${{ github.action_path }}
@@ -48,15 +48,15 @@ runs:
4848
- name: Run tests
4949
if: inputs.test == 'true' || inputs.test == true
5050
run: |
51-
lua $GITHUB_ACTION_PATH/fin_env/loader.lua -- "ammtest.bin.main logLevel=Trace"
51+
lua $GITHUB_ACTION_PATH/fin_env/loader.lua -- ".test logLevel=Trace"
5252
shell: bash
5353
env:
5454
GITHUB_ACTION_PATH: ${{ github.action_path }}
5555
working-directory: ${{ inputs.root }}
5656
- name: Build package
5757
if: startsWith(github.ref, 'refs/tags/')
5858
run: |
59-
lua $GITHUB_ACTION_PATH/fin_env/loader.lua -- "ammcore.bin.buildPackage repo=$GITHUB_REPO package=$GITHUB_REF $ARGS logLevel=Trace"
59+
lua $GITHUB_ACTION_PATH/fin_env/loader.lua -- ".build repo=$GITHUB_REPO package=$GITHUB_REF $ARGS logLevel=Trace"
6060
shell: bash
6161
env:
6262
GITHUB_ACTION_PATH: ${{ github.action_path }}

0 commit comments

Comments
 (0)