From 80fd61ea0bcbf92beb838364f3e758926e36e3ec Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 16 Dec 2021 15:37:04 -0800 Subject: Enable runtime tests and add run id to log artifact name --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 621be4d5..1438c662 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,7 +34,7 @@ jobs: shell: cmd run: ./src/build_official.cmd env: - RuntimeTestsEnabled: ${{ github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop' }} + RuntimeTestsEnabled: true SigningUser: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_USER || '' }} SigningSecret: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_SECRET || '' }} @@ -46,6 +46,7 @@ jobs: - name: Save logs uses: actions/upload-artifact@v2 + if: always() with: - name: logs + name: logs_${{ github.run_id }} path: build/logs/ -- cgit v1.2.3-55-g6feb