Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Electroid committed Oct 29, 2024
1 parent e174ced commit 7592032
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,16 @@ jobs:
uses: ./.github/actions/setup-bun
with:
bun-version: latest
- name: Setup Docker
- name: Setup Docker QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: linux/amd64,linux/arm64
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
with:
platforms: linux/amd64,linux/arm64
driver-opts: network=host
- name: Setup Docker Login
uses: docker/login-action@v3
with:
registry: ghcr.io
Expand Down
7 changes: 6 additions & 1 deletion scripts/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,12 @@ install_common_software() {
software-properties-common
;;
dnf) install_packages \
dnf-plugins-core \
dnf-plugins-core
;;
esac

case "$distro" in
amzn) install_packages \
tar
;;
esac
Expand Down

0 comments on commit 7592032

Please sign in to comment.