File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 6
6
7
7
env :
8
8
QUAY_IMAGE_REPO : ${{ secrets.QUAY_IMAGE_REPO }}
9
-
10
9
jobs :
11
10
delete-pr-quay-image :
12
11
runs-on : ubuntu-latest
@@ -23,10 +22,10 @@ jobs:
23
22
- name : Login to quay.io
24
23
shell : bash
25
24
env :
26
- QUAY_TOKEN : ${{ secrets.QUAY_ROBOT_TOKEN }}
27
25
QUAY_ROBOT_USERNAME : ${{ secrets.QUAY_ROBOT_USERNAME }}
26
+ QUAY_ROBOT_TOKEN : ${{ secrets.QUAY_ROBOT_TOKEN }}
28
27
run : |
29
- skopeo login quay.io -u ${QUAY_ROBOT_USERNAME} -p ${QUAY_TOKEN }
28
+ skopeo login quay.io -u ${QUAY_ROBOT_USERNAME} -p ${QUAY_ROBOT_TOKEN }
30
29
- name : Delete PR image
31
30
shell : bash
32
31
env :
Original file line number Diff line number Diff line change 1
- name : quay.tag
1
+ name : Image push per Github Tag
2
2
3
3
# This GitHub action activates whenever a new tag is created on the repo
4
4
# and creates a copy of the image of the associated commit hash with the
@@ -27,10 +27,10 @@ jobs:
27
27
- name : Login to quay.io
28
28
shell : bash
29
29
env :
30
- QUAY_TOKEN : ${{ secrets.QUAY_ROBOT_TOKEN }}
31
30
QUAY_ROBOT_USERNAME : ${{ secrets.QUAY_ROBOT_USERNAME }}
31
+ QUAY_ROBOT_TOKEN : ${{ secrets.QUAY_ROBOT_TOKEN }}
32
32
run : |
33
- skopeo login quay.io -u ${QUAY_ROBOT_USERNAME} -p ${QUAY_TOKEN }
33
+ skopeo login quay.io -u ${QUAY_ROBOT_USERNAME} -p ${QUAY_ROBOT_TOKEN }
34
34
- name : Get latest tag name
35
35
id : tag
36
36
run : echo "tag=$(git describe --tags --abbrev=0)" >> ${GITHUB_OUTPUT}
You can’t perform that action at this time.
0 commit comments