Skip to content

Commit

Permalink
GHA: Compile: Fixes init-platform boolean condition
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Apr 24, 2024
1 parent ac96c48 commit 998d55a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Compile
uses: fx31337/mql-compile-action@master
with:
init-platform: ${{ ! env.SKIP_INIT }}
init-platform: ${{ env.SKIP_INIT == false }}
mt-path: .mt${{ matrix.version }}
path-ignore: .mt${{ matrix.version }}
path: '${{ env.COMPILE_PATH }}/**/*.mq${{ matrix.version }}'
Expand Down

0 comments on commit 998d55a

Please sign in to comment.