Skip to content

Commit 028cf9c

Browse files
authored
fix(ci): correct syntax for setting environment variables in workflow
1 parent 8a688d7 commit 028cf9c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/hashfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- run: echo "VERSION=\"$(echo $GITHUB_REF | cut -d / -f 3)\"" >> $GITHUB_ENV
12+
- run: echo "VERSION=$(echo $GITHUB_REF | cut -d / -f 3)" >> $GITHUB_ENV
1313
shell: bash
14-
- run: echo "REPOSITORY_NAME=\"$(echo \"$GITHUB_REPOSITORY\" | awk -F / '{print $2}')\"" >> $GITHUB_ENV
14+
- run: echo "REPOSITORY_NAME=$(echo \"$GITHUB_REPOSITORY\" | awk -F / '{print $2}')" >> $GITHUB_ENV
1515
shell: bash
1616
- name: Checking out sources
1717
uses: actions/checkout@v6

0 commit comments

Comments
 (0)