-
Notifications
You must be signed in to change notification settings - Fork 733
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ci): use correct platform name for arm
Signed-off-by: Roberto Scolaro <[email protected]>
- Loading branch information
1 parent
bfb9ccf
commit 0346817
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,37 +41,37 @@ jobs: | |
${{ env.SYSDIG_DOCKERHUB_IMAGE_BASE }}:${{ env.RELEASE }}-amd64 | ||
${{ env.SYSDIG_DOCKERHUB_IMAGE_BASE }}:latest-amd64 | ||
- name: Publish final docker images (aarch64) | ||
- name: Publish final docker images (arm64) | ||
uses: akhilerm/[email protected] | ||
with: | ||
src: ${{ env.SYSDIG_IMAGE_BASE }}:${{ env.RELEASE }}-aarch64-draft | ||
src: ${{ env.SYSDIG_IMAGE_BASE }}:${{ env.RELEASE }}-arm64-draft | ||
dst: | | ||
${{ env.SYSDIG_IMAGE_BASE }}:${{ env.RELEASE }}-aarch64 | ||
${{ env.SYSDIG_IMAGE_BASE }}:latest-aarch64 | ||
${{ env.SYSDIG_DOCKERHUB_IMAGE_BASE }}:${{ env.RELEASE }}-aarch64 | ||
${{ env.SYSDIG_DOCKERHUB_IMAGE_BASE }}:latest-aarch64 | ||
${{ env.SYSDIG_IMAGE_BASE }}:${{ env.RELEASE }}-arm64 | ||
${{ env.SYSDIG_IMAGE_BASE }}:latest-arm64 | ||
${{ env.SYSDIG_DOCKERHUB_IMAGE_BASE }}:${{ env.RELEASE }}-arm64 | ||
${{ env.SYSDIG_DOCKERHUB_IMAGE_BASE }}:latest-arm64 | ||
- name: Create latest manifest and push | ||
run: | | ||
docker manifest create \ | ||
${{ env.SYSDIG_IMAGE_BASE }}:${{ env.RELEASE }} \ | ||
--amend ${{ env.SYSDIG_IMAGE_BASE }}:${{ env.RELEASE }}-amd64 \ | ||
--amend ${{ env.SYSDIG_IMAGE_BASE }}:${{ env.RELEASE }}-aarch64 | ||
--amend ${{ env.SYSDIG_IMAGE_BASE }}:${{ env.RELEASE }}-arm64 | ||
docker manifest push ${{ env.SYSDIG_IMAGE_BASE }}:${{ env.RELEASE }} | ||
docker manifest create \ | ||
${{ env.SYSDIG_DOCKERHUB_IMAGE_BASE }}:${{ env.RELEASE }} \ | ||
--amend ${{ env.SYSDIG_DOCKERHUB_IMAGE_BASE }}:${{ env.RELEASE }}-amd64 \ | ||
--amend ${{ env.SYSDIG_DOCKERHUB_IMAGE_BASE }}:${{ env.RELEASE }}-aarch64 | ||
--amend ${{ env.SYSDIG_DOCKERHUB_IMAGE_BASE }}:${{ env.RELEASE }}-arm64 | ||
docker manifest push ${{ env.SYSDIG_DOCKERHUB_IMAGE_BASE }}:${{ env.RELEASE }} | ||
docker manifest create \ | ||
${{ env.SYSDIG_IMAGE_BASE }}:latest \ | ||
--amend ${{ env.SYSDIG_IMAGE_BASE }}:latest-amd64 \ | ||
--amend ${{ env.SYSDIG_IMAGE_BASE }}:latest-aarch64 | ||
--amend ${{ env.SYSDIG_IMAGE_BASE }}:latest-arm64 | ||
docker manifest push ${{ env.SYSDIG_IMAGE_BASE }}:latest | ||
docker manifest create \ | ||
${{ env.SYSDIG_DOCKERHUB_IMAGE_BASE }}:latest \ | ||
--amend ${{ env.SYSDIG_DOCKERHUB_IMAGE_BASE }}:latest-amd64 \ | ||
--amend ${{ env.SYSDIG_DOCKERHUB_IMAGE_BASE }}:latest-aarch64 | ||
--amend ${{ env.SYSDIG_DOCKERHUB_IMAGE_BASE }}:latest-arm64 | ||
docker manifest push ${{ env.SYSDIG_DOCKERHUB_IMAGE_BASE }}:latest | ||
release-rpm: | ||
|