Skip to content

Commit 476a289

Browse files
authored
change the env
1 parent 97ce8f8 commit 476a289

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/dargon2_library-builder.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
}
3535
echo "CHANGED=$(check)" >> $GITHUB_ENV
3636
- name: Push if Changed
37-
if: env.CHANGED == 1
37+
if: ${{ env.CHANGED == '1' }}
3838
run: |
3939
git config user.name "Github Actions"
4040
git config user.email "[email protected]"
@@ -72,7 +72,7 @@ jobs:
7272
}
7373
echo "CHANGED=$(check)" >> $GITHUB_ENV
7474
- name: Push if Changed
75-
if: env.CHANGED == 1
75+
if: ${{ env.CHANGED == '1' }}
7676
run: |
7777
git config user.name "Github Actions"
7878
git config user.email "[email protected]"
@@ -112,7 +112,7 @@ jobs:
112112
}
113113
echo "CHANGED=$(check)" >> $GITHUB_ENV
114114
- name: Push if Changed
115-
if: env.CHANGED == 1
115+
if: ${{ env.CHANGED == '1' }}
116116
run: |
117117
git config user.name "Github Actions"
118118
git config user.email "[email protected]"

0 commit comments

Comments
 (0)