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: fix publishing for slim head #135

Merged
merged 1 commit into from
Oct 2, 2024
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
6 changes: 4 additions & 2 deletions .github/workflows/datahub-actions-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
needs: setup
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Docker meta
id: docker_meta
uses: docker/metadata-action@v5
Expand Down Expand Up @@ -105,11 +105,13 @@ jobs:
id: docker_meta_slim
uses: docker/metadata-action@v5
with:
# The slim images use a totally separate image name, so we don't need to
# suffix the tags with -slim.
images: |
acryldata/datahub-actions-slim
tags: |
type=raw,value=${{ needs.setup.outputs.unique_tag }}
type=raw,value=head,enable={{is_default_branch}}
type=raw,value=${{ needs.setup.outputs.tracking_tag }},enable=${{ needs.setup.outputs.tracking_tag != '' }}
- name: Set up QEMU (slim)
if: ${{ needs.setup.outputs.publish == 'true' }}
uses: docker/setup-qemu-action@v2
Expand Down
Loading