Skip to content

Commit 0c44a8b

Browse files
committed
Fix quotes in Github Actions conditions
1 parent 86f97fd commit 0c44a8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ jobs:
3535
echo ::set-env name=ARCH::"${ARCH}"
3636
3737
- name: Build & test IPFS in Docker
38-
if: matrix.arch == "amd64"
38+
if: matrix.arch == 'amd64'
3939
run: >
4040
docker build --no-cache .
4141
--build-arg "TEST_LEVEL=advanced"
4242
--tag "ipfs:${{matrix.arch}}"
4343
4444
- name: Build IPFS in Docker
45-
if: matrix.arch != "amd64
45+
if: matrix.arch != 'amd64'
4646
run: >
4747
docker build --no-cache .
4848
--build-arg "ARCH=${ARCH}"

0 commit comments

Comments
 (0)