diff --git a/actions/load-env/action.yml b/actions/load-env/action.yml index d0161e7..0faaffb 100644 --- a/actions/load-env/action.yml +++ b/actions/load-env/action.yml @@ -1,12 +1,16 @@ name: "Load environment" description: "Load environment variables" +outputs: + node_options: ${{ steps.source-env.outputs.node_options }} + runs: using: "composite" steps: - name: Load .env variables + id: source-env if: ${{ hashFiles('.env') != '' }} - uses: c-py/action-dotenv-to-setenv@v4 + uses: c-py/action-dotenv-to-setenv@v5 with: env-file: .env - name: Update config/cache paths