Skip to content

Commit

Permalink
Fix yaml syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jcugat committed Feb 17, 2022
1 parent c3929e4 commit 2e556ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ jobs:
run: |
import sys
python_version = "py{}{}".format(*sys.version_info[:2])
django_version = {{ '"${{ matrix.django-version }}"' }}
database_version = {{ '"${{ matrix.database-version }}"' }}
django_version = "${{ matrix.django-version }}"
database_version = "${{ matrix.database-version }}"
result = "{}-{}-{}".format(python_version, django_version, database_version)
print("::set-output name=result::{}".format(result))
Expand Down

0 comments on commit 2e556ed

Please sign in to comment.