File tree 1 file changed +5
-11
lines changed
1 file changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -71,25 +71,19 @@ jobs:
71
71
exit 1
72
72
fi
73
73
74
- checkout :
75
- name : Check Out Repo
76
- runs-on : ubuntu-latest
77
- needs : set_variables
78
- steps :
79
- - name : Check Out Repo
80
- uses : actions/checkout@v4
81
- with :
82
- ref : ${{ needs.set_variables.outputs.full_tag }}
83
-
84
74
build-and-publish-container-image :
85
75
name : Build and publish container image
86
- needs : [checkout, set_variables]
76
+ needs : set_variables
87
77
runs-on : ubuntu-latest
88
78
if : needs.set_variables.outputs.valid_semver == 'true'
89
79
strategy :
90
80
matrix :
91
81
service : ${{ fromJson(needs.set_variables.outputs.service_matrix) }}
92
82
steps :
83
+ - name : Check Out Repo
84
+ uses : actions/checkout@v4
85
+ with :
86
+ ref : ${{ needs.set_variables.outputs.full_tag }}
93
87
- name : Deploy Service
94
88
run : |
95
89
echo "Deploying service: ${{ matrix.service }}"
You can’t perform that action at this time.
0 commit comments