File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 57
57
fi
58
58
59
59
# For the latest tag check the version match
60
- if [[ ${TAG} == " latest" && ${CHECK_LATEST} == " true" ]]
60
+ if [[ ${TAG} =~ " latest" && ${CHECK_LATEST} == " true" ]]
61
61
then
62
62
_VERSION_IN_LOG=$( docker logs ${CONTAINER_NAME} | grep " #" | grep " Besu version" | cut -d " " -f 4 | sed ' s/\s//g' )
63
63
echo " Extracted version from logs [$_VERSION_IN_LOG ]"
Original file line number Diff line number Diff line change @@ -73,21 +73,24 @@ jobs:
73
73
strategy :
74
74
matrix :
75
75
combination :
76
- - tag : ${{ needs.validate.outputs.release_version }}
77
- platform : ' '
78
- runner : ubuntu-22.04
79
- - tag : ${{ needs.validate.outputs.release_version }}-amd64
76
+ - tag : latest-amd64
80
77
platform : ' linux/amd64'
81
78
runner : ubuntu-22.04
82
79
- tag : latest
83
80
platform : ' '
84
81
runner : ubuntu-22.04
85
- - tag : ${{ needs.validate.outputs.release_version }} -arm64
82
+ - tag : latest -arm64
86
83
platform : ' '
87
84
runner : besu-arm64
85
+ - tag : latest
86
+ platform : ' '
87
+ runner : besu-arm64
88
+
88
89
steps :
89
90
- name : Checkout
90
91
uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
92
+ with :
93
+ sparse-checkout : ' .github/workflows/BesuContainerVerify.sh'
91
94
92
95
- name : Start container
93
96
run : |
Original file line number Diff line number Diff line change @@ -305,6 +305,8 @@ jobs:
305
305
steps :
306
306
- name : Checkout
307
307
uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
308
+ with :
309
+ sparse-checkout : ' .github/workflows/BesuContainerVerify.sh'
308
310
309
311
- name : Start container
310
312
run : |
You can’t perform that action at this time.
0 commit comments