Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2a1a689

Browse files
committedOct 3, 2024
PR comment improvements
1 parent 1e0cbb7 commit 2a1a689

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed
 

‎.github/workflows/BesuContainerVerify.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ else
5757
fi
5858

5959
# For the latest tag check the version match
60-
if [[ ${TAG} == "latest" && ${CHECK_LATEST} == "true" ]]
60+
if [[ ${TAG} =~ "latest" && ${CHECK_LATEST} == "true" ]]
6161
then
6262
_VERSION_IN_LOG=$(docker logs ${CONTAINER_NAME} | grep "#" | grep "Besu version" | cut -d " " -f 4 | sed 's/\s//g')
6363
echo "Extracted version from logs [$_VERSION_IN_LOG]"

‎.github/workflows/docker-promote.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,21 +73,24 @@ jobs:
7373
strategy:
7474
matrix:
7575
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
8077
platform: 'linux/amd64'
8178
runner: ubuntu-22.04
8279
- tag: latest
8380
platform: ''
8481
runner: ubuntu-22.04
85-
- tag: ${{ needs.validate.outputs.release_version }}-arm64
82+
- tag: latest-arm64
8683
platform: ''
8784
runner: besu-arm64
85+
- tag: latest
86+
platform: ''
87+
runner: besu-arm64
88+
8889
steps:
8990
- name: Checkout
9091
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
92+
with:
93+
sparse-checkout: '.github/workflows/BesuContainerVerify.sh'
9194

9295
- name: Start container
9396
run: |

‎.github/workflows/draft-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,8 @@ jobs:
305305
steps:
306306
- name: Checkout
307307
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
308+
with:
309+
sparse-checkout: '.github/workflows/BesuContainerVerify.sh'
308310

309311
- name: Start container
310312
run: |

0 commit comments

Comments
 (0)
Please sign in to comment.