Skip to content
Open
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ jobs:
- name: Update manifests
run: |
# this is quite naive, but i don't think we need more for now
sed -i "s/dev/${TAG}/g" config/default/manager_image_patch.yaml
# there is a bug here as the previous sed replace the "dev" pattern in the tag and in the org name, somthing with capturing group seems better
sed -r "/image:/ s/^(.*):(.*)$/\1:${TAG}/g" config/default/manager_image_patch.yaml
kustomize build config/default/ > infrastructure-components.yaml
- name: Release
uses: softprops/action-gh-release@v2
Expand Down
2 changes: 0 additions & 2 deletions config/default/manager_image_patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ metadata:
spec:
template:
spec:
imagePullSecrets:
- name: capmvm-private-image-cred
containers:
- image: ghcr.io/liquidmetal-dev/cluster-api-provider-microvm:dev
name: manager
Loading