From 14507083696e193e1e6f363684271d35cb563716 Mon Sep 17 00:00:00 2001 From: James Kessler Date: Mon, 30 Sep 2024 14:12:01 -0700 Subject: [PATCH] Fix error in github actions env var syntax. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 44ac614..cdbf32d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -134,7 +134,7 @@ jobs: run: | binary=test/coveralls-linux-x86_64 cd coverage - COVERALLS_SERVICE_NUMBER=${{ GITHUB_RUN_ID }}-x86_64-test $binary report --measure --base-path src/coverage_reporter/ + COVERALLS_SERVICE_NUMBER=${{ github.run_id }}-x86_64-test $binary report --measure --base-path src/coverage_reporter/ test-linux-aarch64: runs-on: ubuntu-latest