Skip to content

Commit

Permalink
fix gha upload script
Browse files Browse the repository at this point in the history
  • Loading branch information
Pythoner6 committed Feb 8, 2024
1 parent 02848c6 commit ce3e35b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/demo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
crane auth login -u "$ACTOR" --password-stdin <<< "$TOKEN" "ghcr.io"
readarray -t images <<< "$(find result/images -maxdepth 1 -mindepth 1 -type d)"
for image in "${images[@]}"; do
crane push "$image" "$BASE_URL/netserv/$(basename image):latest"
crane push "$image" "$BASE_URL/netserv/$(basename $image):latest"
done
readarray -t charts <<< "$(find result/charts -maxdepth 1 -mindepth 1 -type d)"
for chart in "${charts[@]}"; do
Expand Down

0 comments on commit ce3e35b

Please sign in to comment.