File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -23,24 +23,19 @@ jobs:
23
23
runs-on : ubuntu-latest
24
24
needs : [make-date-tag]
25
25
if : startsWith(github.repository, 'opensciencegrid/')
26
- strategy :
27
- fail-fast : False
28
- matrix :
29
- repo : ['latest']
30
26
steps :
31
27
- uses : actions/checkout@v2
32
28
33
29
- name : Generate tag list
34
30
id : generate-tag-list
35
31
env :
36
- REPO : ${{ matrix.repo }}
37
32
TIMESTAMP : ${{ needs.make-date-tag.outputs.dtag }}
38
33
run : |
39
34
#docker_repo=${GITHUB_REPOSITORY/opensciencegrid\/docker-/opensciencegrid/}
40
35
docker_repo=opensciencegrid/comanage-utils
41
36
tag_list=()
42
37
for registry in hub.opensciencegrid.org docker.io; do
43
- for image_tag in "$REPO " "$REPO -$TIMESTAMP"; do
38
+ for image_tag in "latest " "latest -$TIMESTAMP"; do
44
39
tag_list+=("$registry/$docker_repo":"$image_tag")
45
40
done
46
41
done
You can’t perform that action at this time.
0 commit comments