Skip to content

Commit 9432a48

Browse files
committed
Correct conditional steps
1 parent 5d753b9 commit 9432a48

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060

6161
- name: Setup Composer Token
6262
run: |
63-
if [ ! -z "${{ secrets.COMPOSER_TOKEN }}"]; then
63+
if [ ! -z "${{ secrets.COMPOSER_TOKEN }}" ]; then
6464
composer config github-oauth.github.com ${{ secrets.COMPOSER_TOKEN }}
6565
fi
6666

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555

5656
- name: Setup Composer Token
5757
run: |
58-
if [ ! -z "${{ secrets.COMPOSER_TOKEN }}"]; then
58+
if [ ! -z "${{ secrets.COMPOSER_TOKEN }}" ]; then
5959
composer config github-oauth.github.com ${{ secrets.COMPOSER_TOKEN }}
6060
fi
6161

0 commit comments

Comments
 (0)