Skip to content
This repository was archived by the owner on Jan 20, 2025. It is now read-only.

Commit ce29cb8

Browse files
committed
fix: docker context path
1 parent 190ed6d commit ce29cb8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
- name: Push image
172172
uses: docker/build-push-action@v5
173173
with:
174-
context: .
174+
context: ./miw
175175
push: ${{ github.event_name != 'pull_request' }}
176176
tags: ${{ steps.meta.outputs.tags }}
177177
labels: ${{ steps.meta.outputs.labels }}
@@ -222,21 +222,21 @@ jobs:
222222
# Package MIW chart
223223
helm_package_path=$(helm package -u -d helm-charts ./charts/managed-identity-wallet | grep -o 'to: .*' | cut -d' ' -f2-)
224224
echo "HELM_PACKAGE_PATH=$helm_package_path" >> $GITHUB_ENV
225-
225+
226226
# Commit and push to gh-pages
227227
git add helm-charts
228228
git stash -- helm-charts
229229
git reset --hard
230230
git fetch origin
231231
git checkout gh-pages
232232
git stash pop
233-
233+
234234
# Generate helm repo index.yaml
235235
helm repo index . --merge index.yaml --url https://${GITHUB_REPOSITORY_OWNER}.github.io/${GITHUB_REPOSITORY#*/}/
236236
git add index.yaml
237-
237+
238238
git commit -s -m "Release ${{ needs.semantic_release.outputs.next_release }}"
239-
239+
240240
git push origin gh-pages
241241
242242
- name: Upload chart to GitHub release

0 commit comments

Comments
 (0)