Skip to content

Commit

Permalink
chore: add arm64 deb package (aquasecurity#1480)
Browse files Browse the repository at this point in the history
  • Loading branch information
mowangdk authored Dec 15, 2021
1 parent 5262590 commit 279e76f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,6 @@ integration/testdata/fixtures/images

# SBOMs generated during CI
/bom.json

# goreleaser output
dist
2 changes: 2 additions & 0 deletions ci/deploy-deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ for release in ${DEBIAN_RELEASES[@]} ${UBUNTU_RELEASES[@]}; do
echo "Removing deb package of $release"
reprepro -A i386 remove $release trivy
reprepro -A amd64 remove $release trivy
reprepro -A arm64 remove $release trivy
done

for release in ${DEBIAN_RELEASES[@]} ${UBUNTU_RELEASES[@]}; do
echo "Adding deb package to $release"
reprepro includedeb $release ../../dist/*Linux-64bit.deb
reprepro includedeb $release ../../dist/*Linux-32bit.deb
reprepro includedeb $release ../../dist/*Linux-ARM64.deb
done

git add .
Expand Down

0 comments on commit 279e76f

Please sign in to comment.