From 8763718a118fd8cb4fe7e851f041ea56e79145dc Mon Sep 17 00:00:00 2001 From: XargonWan Date: Tue, 5 Nov 2024 22:21:46 +0900 Subject: [PATCH] Adding sha to artifacts + printing tree --- .github/workflows/build_artifacts.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_artifacts.yml b/.github/workflows/build_artifacts.yml index 373b62e..28a0731 100644 --- a/.github/workflows/build_artifacts.yml +++ b/.github/workflows/build_artifacts.yml @@ -80,6 +80,7 @@ jobs: - name: "Exporting dir tree" id: tree run: | + tree . tree -H ./ > ${GITHUB_WORKSPACE}/tree.html echo "Directory tree exported to tree.html" @@ -112,7 +113,7 @@ jobs: # Release Notes These are the artifacts for RetroDECK from ${{ github.repository }}, built from commit: ${{ github.repository }}@${{ github.sha }}. On branch [${{ github.ref_name }}](https://github.com/${{ github.repository }}/tree/${{ github.ref_name }}). - artifacts: "${GITHUB_WORKSPACE}/RetroDECK-Artifact.tar.gz, ${GITHUB_WORKSPACE}/tree.html" + artifacts: "${GITHUB_WORKSPACE}/RetroDECK-Artifact.tar.gz, ${GITHUB_WORKSPACE}/tree.html, ${GITHUB_WORKSPACE}/RetroDECK-Artifact-cooker.sha" allowUpdates: true makeLatest: true token: ${{ steps.generate-rekku-token.outputs.token || secrets.TRIGGER_BUILD_TOKEN || secrets.GITHUB_TOKEN }}