diff --git a/.github/actions/compile/action.yml b/.github/actions/compile/action.yml index fee8b5b..e389ea5 100644 --- a/.github/actions/compile/action.yml +++ b/.github/actions/compile/action.yml @@ -37,16 +37,11 @@ runs: echo "MIX_ENV=$MIX_ENV" >>$GITHUB_OUTPUT echo "Set MIX_ENV to $MIX_ENV" - - shell: sh - run: | - ls _build - ls _build/*/lib - - name: Cache id: cache uses: actions/cache@v4 with: - path: _build/${{ steps.compute.outputs.MIX_ENV }}/lib/babel + path: _build/test/lib/babel key: ${{ inputs.cache-prefix }}-mix:${{ hashFiles('mix.exs') }}-lib:${{ hashFiles('README.md', 'lib/**') }} restore-keys: | ${{ inputs.cache-prefix }}-mix:${{ hashFiles('mix.exs') }}- @@ -88,6 +83,10 @@ runs: MIX_ENV: ${{ steps.compute.outputs.MIX_ENV }} run: | mix compile --warnings-as-errors | tee mix-compile.output + echo _build + ls _build + echo "_build/${{ steps.compute.outputs.MIX_ENV }}/lib/babel" + ls "_build/${{ steps.compute.outputs.MIX_ENV }}/lib/babel" if ${{ inputs.generate-summary }}; then echo '
mix compile'