2022-12-15 09:27:04 +00:00

14 lines
379 B
YAML

name: "before-install"
description: "launch before_install.sh and then parse env vars"
runs:
using: "composite"
steps:
- name: Before install
shell: bash
run: |
bash -xv ./scripts/ci/job_hooks/before_install.sh "/tmp/github_vars.env"
while read ENVVAR; do
echo "$ENVVAR" >> $GITHUB_ENV
done < "/tmp/github_vars.env"