Skip to content

Commit 77a68fe

Browse files
chore: fix CI (#2765)
1 parent 4a63f8f commit 77a68fe

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/test_deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,7 @@ jobs:
853853
ref: 'develop'
854854
- name: merge changes from master
855855
run: |
856-
git merge master
856+
git merge origin/master --message "Merge branch 'master' into develop"
857857
git push
858858
859859
build-images:
@@ -876,8 +876,8 @@ jobs:
876876
if: "startsWith(github.ref, 'refs/tags/') || endsWith(github.ref, github.event.repository.default_branch)"
877877
uses: Azure/docker-login@v1
878878
with:
879-
username: ${{ secrets.DOCKER_USERNAME }}
880-
password: ${{ secrets.DOCKER_PASSWORD }}
879+
username: ${{ secrets.RENKU_DOCKER_USERNAME }}
880+
password: ${{ secrets.RENKU_DOCKER_PASSWORD }}
881881
- name: push images
882882
if: "startsWith(github.ref, 'refs/tags/') || endsWith(github.ref, github.event.repository.default_branch)"
883883
run: |
@@ -909,8 +909,8 @@ jobs:
909909
env:
910910
CHART_NAME: renku-core
911911
GITHUB_TOKEN: ${{ secrets.RENKUBOT_GITHUB_TOKEN }}
912-
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
913-
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
912+
DOCKER_USERNAME: ${{ secrets.RENKU_DOCKER_USERNAME }}
913+
DOCKER_PASSWORD: ${{ secrets.RENKU_DOCKER_PASSWORD }}
914914
- name: Wait for chart to be available
915915
run: sleep 120
916916
- name: Update component version

0 commit comments

Comments
 (0)