Skip to content

Commit 387e42d

Browse files
authored
Merge pull request #307 from membermatters/feature/gha-external-pr-builds
fix typo in gha
2 parents ab77b14 + 1b05820 commit 387e42d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build_docker.pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
id: extract_branch
2424
- name: Extract repo owner
2525
shell: bash
26-
run: echo "repoowner=${{ github.repository_owner }}" | tr / - >> $GITHUB_OUTPUT
26+
run: echo "repoowner=${{ github.event.pull_request.head.repo.owner.login }}" | tr / - >> $GITHUB_OUTPUT
2727
id: extract_repo_owner
2828
- name: Generate image name
2929
shell: bash

.github/workflows/upload_docker.pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
cat ./imagename
4646
- name: Extract image name
4747
shell: bash
48-
run: echo "imagename="$(cat imagename)"" - >> $GITHUB_OUTPUT
48+
run: echo "imagename="$(cat imagename)"" >> $GITHUB_OUTPUT
4949
id: extract_image_name
5050
- name: Load PR Image
5151
run: |

0 commit comments

Comments
 (0)