19 lines
520 B
YAML
19 lines
520 B
YAML
name: Load secrets from 1Password
|
|
description: Make secrets from 1Password Connect available as environment variables in the next steps.
|
|
author: 1Password
|
|
branding:
|
|
icon: lock
|
|
color: blue
|
|
inputs:
|
|
unset-previous:
|
|
description: Whether to unset environment variables populated by 1Password in earlier job steps
|
|
default: false
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- shell: bash
|
|
env:
|
|
INPUT_UNSET_PREVIOUS: ${{ inputs.unset-previous }}
|
|
run: |
|
|
${{ github.action_path }}/entrypoint.sh
|