Skip to content

Commit

Permalink
Remove extraneous parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
puddly committed May 1, 2024
1 parent 01fdab9 commit 00e09a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
id: read-repo-info-pr
if: steps.get-current-pr.outputs.pr_found == 'true'
run: |
base_image=$(echo ${{ fromJSON(steps.get-current-pr.outputs.pr).base.repo.full_name }} | tr [:upper:] [:lower:]))
head_image=$(echo ${{ fromJSON(steps.get-current-pr.outputs.pr).head.repo.full_name }} | tr [:upper:] [:lower:]))
base_image=$(echo ${{ fromJSON(steps.get-current-pr.outputs.pr).base.repo.full_name }} | tr [:upper:] [:lower:])
head_image=$(echo ${{ fromJSON(steps.get-current-pr.outputs.pr).head.repo.full_name }} | tr [:upper:] [:lower:])
echo "base_image=$base_image" >> $GITHUB_OUTPUT
echo "head_image=$base_image" >> $GITHUB_OUTPUT
- name: Read repository information (no PR)
Expand Down

0 comments on commit 00e09a5

Please sign in to comment.