File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 27
27
- name : Build Image
28
28
uses : ./.github/actions/build
29
29
env :
30
- IMG : quay.io/${{ env.QUAY_ORG }}/data-science-pipelines-operator :${{ steps.tags.outputs.tag }}
30
+ IMG : quay.io/${{ env.QUAY_ORG }}/${{ env.IMAGE_REPO_DSPO }} :${{ steps.tags.outputs.tag }}
31
31
TARGET_IMAGE_TAG : ${{ steps.tags.outputs.tag }}
32
32
with :
33
33
OVERWRITE : true
37
37
- name : Tag latest
38
38
shell : bash
39
39
env :
40
- IMG : quay.io/${{ env.QUAY_ORG }}/data-science-pipelines-operator
40
+ IMG : quay.io/${{ env.QUAY_ORG }}/${{ env.IMAGE_REPO_DSPO }}
41
41
NEWEST_TAG : ${{ steps.tags.outputs.tag }}
42
42
run : |
43
43
podman tag ${IMG}:${NEWEST_TAG} ${IMG}:latest
Original file line number Diff line number Diff line change 18
18
QUAY_ID : ${{ secrets.QUAY_ID }}
19
19
QUAY_TOKEN : ${{ secrets.QUAY_TOKEN }}
20
20
TARGET_IMAGE_TAG : pr-${{ github.event.pull_request.number }}
21
+
22
+ GH_USER_NAME : dsp-developers
21
23
jobs :
22
24
build-pr-image :
23
25
if : github.event.pull_request.state == 'open'
@@ -35,10 +37,10 @@ jobs:
35
37
shell : bash
36
38
env :
37
39
GH_TOKEN : ${{ secrets.ACCESS_TOKEN }}
38
- IMG : quay.io/${{ env.QUAY_ORG }}/data-science-pipelines-operator :${{ env.TARGET_IMAGE_TAG }}
40
+ IMG : quay.io/${{ env.QUAY_ORG }}/${{ env.IMAGE_REPO_DSPO }} :${{ env.TARGET_IMAGE_TAG }}
39
41
run : |
40
- git config user.email "[email protected] "
41
- git config user.name "dsp-developers "
42
+ git config user.email "${{ env.GH_USER_EMAIL }} "
43
+ git config user.name "${{ env.GH_USER_NAME }} "
42
44
43
45
action=${{ github.event.action }}
44
46
You can’t perform that action at this time.
0 commit comments