Skip to content

Commit 1fd50d1

Browse files
author
Oleg
committed
Correct shell interpolation
1 parent 318220e commit 1fd50d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
id: impl
4848
env:
4949
GH_REPOSITORY: ${{ github.repository }}
50-
run: echo "name=$(echo '${GH_REPOSITORY}' | awk -F '/' '{print $2}')" >> $GITHUB_OUTPUT
50+
run: echo "name=$(echo ${GH_REPOSITORY} | awk -F '/' '{print $2}')" >> $GITHUB_OUTPUT
5151

5252
- name: Install bowtie
5353
uses: bowtie-json-schema/bowtie@main

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
id: impl
3535
env:
3636
GH_REPOSITORY: ${{ github.repository }}
37-
run: echo "name=$(echo '${GH_REPOSITORY}' | awk -F '/' '{print $2}')" >> $GITHUB_OUTPUT
37+
run: echo "name=$(echo ${GH_REPOSITORY} | awk -F '/' '{print $2}')" >> $GITHUB_OUTPUT
3838

3939
- name: Compute latest implementation version
4040
id: version

0 commit comments

Comments
 (0)