Skip to content

Commit

Permalink
Merge pull request #4 from MeneDev/multi-arch
Browse files Browse the repository at this point in the history
Multi arch
  • Loading branch information
MeneDev authored May 9, 2024
2 parents deed5ed + 6a9c110 commit 6b53c8b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
docker tag csi-rclone:latest $DOCKER_REPOSITORY:latest-amd64
docker tag csi-rclone:latest $DOCKER_REPOSITORY:${TAG}-amd64
echo ${DOCKER_PASSWORD}|docker login -u ${DOCKER_USERNAME} --password-stdin
echo "${DOCKER_PASSWORD}" | docker login -u ${DOCKER_USERNAME} --password-stdin
docker push $DOCKER_REPOSITORY:latest-aarch64
docker push $DOCKER_REPOSITORY:${TAG}-aarch64
Expand All @@ -59,8 +59,8 @@ jobs:
--amend $DOCKER_REPOSITORY:${TAG}-amd64 \
--amend $DOCKER_REPOSITORY:${TAG}-aarch64
docker push $DOCKER_REPOSITORY:latest
docker push $DOCKER_REPOSITORY:${TAG}
docker manifest push $DOCKER_REPOSITORY:latest
docker manifest push $DOCKER_REPOSITORY:${TAG}
- name: Publish chart
env:
Expand Down
1 change: 1 addition & 0 deletions devenv/nix/containerImage.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ pkgs.dockerTools.streamLayeredImage {
extraCommands = ''
mkdir -p ./plugin
mkdir -p ./tmp
ln /bin/linux_*/csi-rclone-plugin /bin/csi-rclone-plugin
'';
}

0 comments on commit 6b53c8b

Please sign in to comment.