mirror of
https://github.com/1Password/load-secrets-action.git
synced 2026-06-21 14:23:48 +00:00
8 lines
187 B
Bash
8 lines
187 B
Bash
#!/bin/bash
|
|
set -e
|
|
if [ "$STEP_OUTCOME" != "failure" ]; then
|
|
echo "Expected action to fail on invalid ref, got: $STEP_OUTCOME"
|
|
exit 1
|
|
fi
|
|
echo "Action correctly failed on invalid ref"
|