Skip to content
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
20 changes: 10 additions & 10 deletions .github/workflows/release-final.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,37 +41,37 @@
${{ 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:
Expand Down Expand Up @@ -121,7 +121,7 @@
path: sysdig

- name: Create directories
run: |

Check warning on line 124 in .github/workflows/release-final.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:10: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/release-final.yaml:124:9: shellcheck reported issue in this script: SC2086:info:1:10: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 124 in .github/workflows/release-final.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:2:10: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/release-final.yaml:124:9: shellcheck reported issue in this script: SC2086:info:2:10: Double quote to prevent globbing and word splitting [shellcheck]
mkdir -p $REPOSITORY_DIR
mkdir -p $PACKAGES_DIR

Expand Down Expand Up @@ -187,7 +187,7 @@
path: sysdig

- name: Create directories
run: |

Check warning on line 190 in .github/workflows/release-final.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:10: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/release-final.yaml:190:9: shellcheck reported issue in this script: SC2086:info:1:10: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 190 in .github/workflows/release-final.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:2:10: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/release-final.yaml:190:9: shellcheck reported issue in this script: SC2086:info:2:10: Double quote to prevent globbing and word splitting [shellcheck]
mkdir -p $REPOSITORY_DIR
mkdir -p $PACKAGES_DIR

Expand Down Expand Up @@ -248,7 +248,7 @@
path: sysdig

- name: Create directories
run: |

Check warning on line 251 in .github/workflows/release-final.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:10: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/release-final.yaml:251:9: shellcheck reported issue in this script: SC2086:info:1:10: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 251 in .github/workflows/release-final.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:2:10: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/release-final.yaml:251:9: shellcheck reported issue in this script: SC2086:info:2:10: Double quote to prevent globbing and word splitting [shellcheck]
mkdir -p $REPOSITORY_DIR
mkdir -p $PACKAGES_DIR

Expand Down