Skip to content

Commit

Permalink
removed packages prefix from package repositories
Browse files Browse the repository at this point in the history
  • Loading branch information
paynejacob committed Dec 13, 2021
1 parent dc29916 commit c351b0e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scripts/push-packages
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#!/bin/bash

for pkg in packages/*; do
cd packages
for pkg in *; do
tag=$(cat $pkg/manifest.yaml | grep version | sed "s/version: /v/")
corral publish $pkg "ghcr.io/rancherlabs/corral/$pkg:$tag"
corral publish $pkg "ghcr.io/rancherlabs/corral/$pkg:latest"
echo $pkg "ghcr.io/rancherlabs/corral/$pkg:$tag"
echo $pkg "ghcr.io/rancherlabs/corral/$pkg:latest"
done

0 comments on commit c351b0e

Please sign in to comment.