Skip to content

Commit 0affd36

Browse files
committed
Fix yaml syntax
1 parent a49c282 commit 0affd36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ jobs:
7979
run: |
8080
import sys
8181
python_version = "py{}{}".format(*sys.version_info[:2])
82-
django_version = {{ '"${{ matrix.django-version }}"' }}
83-
database_version = {{ '"${{ matrix.database-version }}"' }}
82+
django_version = "${{ matrix.django-version }}"
83+
database_version = "${{ matrix.database-version }}"
8484
result = "{}-{}-{}".format(python_version, django_version, database_version)
8585
print("::set-output name=result::{}".format(result))
8686

0 commit comments

Comments
 (0)