mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
14 lines
379 B
YAML
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"
|
|
|