From d864c9af1e70a0b9d76658b9421fc7ccfab58bd2 Mon Sep 17 00:00:00 2001 From: Zhang Hua Date: Fri, 10 May 2024 19:14:45 +0800 Subject: [PATCH] Update build action --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index dda9a4b..b0ae23f 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -27,9 +27,9 @@ jobs: id: build-env-info run: | # machine=x86_64 - python -c 'import platform;print("machine={}".format(platform.machine()))' >> $GITHUB_OUTPUT + python -c 'import platform;print("machine={}".format(platform.machine()))' | tee $GITHUB_OUTPUT # system=ubuntu - echo system=${{ matrix.os }} | cut -d - -f 1 >> $GITHUB_OUTPUT + echo system=${{ matrix.os }} | cut -d - -f 1 | tee $GITHUB_OUTPUT - name: "Create archive" run: "7z a E5Renewer-${{ steps.build-env-info.system }}-${{ steps.build-env-info.machine }}.7z dist/*"