Skip to content

Commit 4768381

Browse files
committed
perf: replace SSH origins with HTTPS
1 parent ae3eaf2 commit 4768381

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/az_acr_push.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ jobs:
3030
registry: "${{ env.AZURE_CONTAINER_REGISTRY }}"
3131
username: "${{ env.ACR_LOGIN_USERNAME }}"
3232
password: "${{ env.ACR_LOGIN_PASSWORD }}"
33+
34+
- name: GitHub Configuration
35+
run: git config --global url."https://oauth2:${{ secrets.GH_TOKEN }}@github.com".insteadOf [email protected]
3336

3437
- name: Configure branch name
3538
id: branch_name

.github/workflows/az_acr_release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@ jobs:
2626
registry: "${{ env.AZURE_CONTAINER_REGISTRY }}"
2727
username: "${{ env.ACR_LOGIN_USERNAME }}"
2828
password: "${{ env.ACR_LOGIN_PASSWORD }}"
29-
29+
30+
- name: GitHub Configuration
31+
run: git config --global url."https://oauth2:${{ secrets.GH_TOKEN }}@github.com".insteadOf [email protected]
32+
3033
- name: Set up Docker Buildx
3134
uses: docker/setup-buildx-action@v3
3235

0 commit comments

Comments
 (0)