Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
Reference correct variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
Piper Dougherty committed Dec 24, 2021
1 parent ff615f4 commit b003dbe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ jobs:
files: example-env/simple/env.yaml
- name: Check action returns correct value for environment variable
run: |
if [[ $var =~ "www.example.com" ]]; then
if [[ $WEBSERVER_URL =~ "www.example.com" ]]; then
echo "Pass"
else
echo "Test failed: output was not 'www.example.com'"
exit 1
fi

0 comments on commit b003dbe

Please sign in to comment.