Skip to content

Commit

Permalink
Fix trailing quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
jlantz committed Sep 26, 2024
1 parent 0092360 commit 5b4e6e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/feature-test-2gp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,16 @@ jobs:
run: |
TAG_SUFFIX=""
if [ "${{ inputs.with_full_browser }}" == "true" ]; then
TAG_SUFFIX=-full-browser"
TAG_SUFFIX=-full-browser
echo "Using full-browser image" >> $GITHUB_STEP_SUMMARY
elif [ "${{ inputs.with_chromedriver }}" == "true" ] && [ "${{ inputs.with_playwright }}" == "true" ]; then
TAG_SUFFIX=-full-browser"
TAG_SUFFIX=-full-browser
echo "Using full-browser image" >> $GITHUB_STEP_SUMMARY
elif [ "${{ inputs.with_chromedriver }}" == "true" ]; then
TAG_SUFFIX=-chromedriver"
TAG_SUFFIX=-chromedriver
echo "Using chromedriver image" >> $GITHUB_STEP_SUMMARY
elif [ "${{ inputs.with_playwright }}" == "true" ]; then
TAG_SUFFIX=-playwright"
TAG_SUFFIX=-playwright
echo "Using playwright image" >> $GITHUB_STEP_SUMMARY
else
TAG_SUFFIX=""
Expand Down

0 comments on commit 5b4e6e9

Please sign in to comment.