From 87ecf865e25bc9db2bf04b6cbb8c38e9b6ac26af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Kr=C3=B3l?= Date: Sun, 24 Nov 2024 23:58:20 +0100 Subject: [PATCH] .github/workflows/build.yml: add annoted tag before build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Piotr Król --- .github/workflows/build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f329247..5854723 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,10 +44,12 @@ jobs: run: | cd $GITHUB_WORKSPACE/coreboot guilt push -a - - name: Checkout coreboot submodules + - name: Checkout coreboot submodules and add annoted tag run: | cd $GITHUB_WORKSPACE/coreboot git submodule update --init --recursive --checkout + # this is for verification of reproducibility in local builds + git tag -a github-actions-bot-tag -m "$GITHUB_REF_NAME" - name: Build Dasharo run: | cd $GITHUB_WORKSPACE/coreboot @@ -103,10 +105,12 @@ jobs: run: | cd $GITHUB_WORKSPACE/coreboot guilt push -a - - name: Checkout coreboot submodules + - name: Checkout coreboot submodules and add annoted tag run: | cd $GITHUB_WORKSPACE/coreboot git submodule update --init --recursive --checkout + # this is for verification of reproducibility in local builds + git tag -a github-actions-bot-tag -m "$GITHUB_REF_NAME" - name: Build Dasharo run: | cd $GITHUB_WORKSPACE/coreboot