Files
load-secrets-action/action.yml
Floris van der Grinten e25891308d Create env-export action
2021-05-20 11:27:09 +02:00

13 lines
348 B
YAML

name: env-export-action
inputs:
unset-previous:
description: Whether to unset environment variables populated by 1Password in earlier job steps
default: false
runs:
using: composite
steps:
- run: |
export INPUT_UNSET_PREVIOUS=${{ inputs.unset-previous }}
${{ github.action_path }}/entrypoint.sh
shell: bash