Skip to content

Commit 11f869f

Browse files
committed
fix variables
1 parent e4e5879 commit 11f869f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ jobs:
5454
git clone -n -v --progress https://github.com/input-output-hk/${{ github.event.repository.name }}.git C:\\${{ github.event.repository.name }}
5555
cd C:\\${{ github.event.repository.name }}
5656
git checkout ${{ github.event.pull_request.head.sha }}
57-
if: github.event_name == 'pull_request'
57+
if: ${{ github.event_name == 'pull_request' }}
5858

5959
- name: Checkout code on push
6060
run: |
6161
mkdir C:\\${{ github.event.repository.name }}
6262
git clone -v --progress https://github.com/input-output-hk/${{ github.event.repository.name }}.git C:\\${{ github.event.repository.name }}
6363
cd C:\\${{ github.event.repository.name }}
64-
if: github.event_name == 'push'
64+
if: ${{ github.event_name == 'push' }}
6565

6666
- name: Allow long paths on Windows
6767
working-directory: "C:\\${{ github.event.repository.name }}"

0 commit comments

Comments
 (0)