Skip to content

Commit

Permalink
Revert "feat(container): images for RISC-V now track Alpine stable"
Browse files Browse the repository at this point in the history
This reverts commit eb7752a.
  • Loading branch information
npdgm committed Dec 20, 2022
1 parent eb7752a commit 2022fd3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,12 @@ jobs:
header('{}: assembling image for: {}'.format(base_image, container_arch))
if base_tag:
container_base = 'docker://{}:{}'.format(base_image, base_tag)
# FIXME exceptions for RISC-V
if container_arch == 'riscv64' and base_image == 'alpine':
# use 'edge' waiting for version 3.17
container_base = 'docker://{}:edge'.format(base_image)
else:
container_base = 'docker://{}:{}'.format(base_image, base_tag)
else:
container_base = base_image
Expand Down

0 comments on commit 2022fd3

Please sign in to comment.