From 1bc08df1a07d85e7e31b135d90f2015b9a212277 Mon Sep 17 00:00:00 2001 From: Gokhan Gulbiz Date: Thu, 17 Aug 2023 14:38:02 +0300 Subject: [PATCH] Naming --- .github/workflows/build_and_test.yml | 4 ++-- .github/workflows/flaky_test_debugging.yml | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index e8bda3e63..50de331bb 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -103,7 +103,7 @@ jobs: options: --user root steps: - uses: actions/checkout@v3.5.0 - - name: Expose PG_MAJOR to Github Env + - name: Expose $PG_MAJOR to Github Env run: echo "PG_MAJOR=${PG_MAJOR}" >> $GITHUB_ENV shell: bash - name: Build @@ -167,7 +167,7 @@ jobs: - build steps: - uses: actions/checkout@v3.5.0 - - name: Expose PG_MAJOR to Github Env + - name: Expose $PG_MAJOR to Github Env run: echo "PG_MAJOR=${PG_MAJOR}" >> $GITHUB_ENV shell: bash - uses: actions/download-artifact@v3.0.1 diff --git a/.github/workflows/flaky_test_debugging.yml b/.github/workflows/flaky_test_debugging.yml index 24bef3321..33ffe2984 100644 --- a/.github/workflows/flaky_test_debugging.yml +++ b/.github/workflows/flaky_test_debugging.yml @@ -86,9 +86,10 @@ jobs: fail-fast: false matrix: ${{ fromJson(needs.prepare_parallelization_matrix.outputs.json) }} steps: - - run: echo "PG_MAJOR=${PG_MAJOR}" >> $GITHUB_ENV - shell: bash - uses: actions/checkout@v3.5.0 + - name: Expose $PG_MAJOR to Github Env + run: echo "PG_MAJOR=${PG_MAJOR}" >> $GITHUB_ENV + shell: bash - uses: actions/download-artifact@v3.0.1 with: name: build-${{ env.PG_MAJOR }}