Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: pass repo_organization to build script to ensure correct image metadata #2016

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Install Just
shell: bash
run: |
Expand All @@ -55,12 +55,12 @@ jobs:
tar -zxvf just-${JUST_VERSION}-x86_64-unknown-linux-musl.tar.gz -C /tmp just
sudo mv /tmp/just /usr/local/bin/just
rm -f just-${JUST_VERSION}-x86_64-unknown-linux-musl.tar.gz

- name: Check Just Syntax
shell: bash
run: |
just check

- name: Image Name
shell: bash
run: |
Expand All @@ -85,7 +85,8 @@ jobs:
id: build-image
shell: bash
run: |
sudo just build-ghcr "${{ matrix.base_name }}" \
sudo just repo_organization="${{ github.repository_owner }}" \
build-ghcr "${{ matrix.base_name }}" \
"${{ matrix.stream_name }}" \
"${{ matrix.image_flavor }}" \
"${{ inputs.kernel_pin }}"
Expand Down Expand Up @@ -132,7 +133,7 @@ jobs:
echo "Tags for this Action..."
echo "$alias_tags"
echo "alias_tags=${alias_tags}" >> $GITHUB_OUTPUT

# Tag Images
- name: Tag Images
shell: bash
Expand Down
Loading