From 0dd48bda5c4c724e056bfe6cbe179f48856ff352 Mon Sep 17 00:00:00 2001 From: PKulkoRaccoonGang Date: Mon, 13 Nov 2023 13:59:11 +0200 Subject: [PATCH 1/2] refactor: added use of environment files --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 721e3aa73f..cc47977252 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: uses: codecov/codecov-action@v3 - name: Extract branch name shell: bash - run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" + run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV id: extract_branch - name: Preview semantic-release version env: From 9768cb6801956eff80f0a4323dc6f533a654715d Mon Sep 17 00:00:00 2001 From: PKulkoRaccoonGang Date: Fri, 17 Nov 2023 10:36:46 +0200 Subject: [PATCH 2/2] refactor: changed env file --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc47977252..eeaa4d1db4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: uses: codecov/codecov-action@v3 - name: Extract branch name shell: bash - run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV + run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_OUTPUT id: extract_branch - name: Preview semantic-release version env: