chore: Fix nightly workflow if statement (#1471)

Seems like #1467 didn't work, because `"` doesn't seem to be valid in an `if`
context. Removing the quotes did not work either, but using a single quote
did the trick.
This commit is contained in:
Sebastian Lövdahl 2022-04-14 11:50:34 +03:00 committed by GitHub
parent dddf8cdad7
commit 2f5ef368d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@
'nightly_build':
{
'runs-on': 'ubuntu-latest',
'if': 'github.repository_owner == "Hypfer"',
'if': "github.repository_owner == 'Hypfer'",
'steps':
[
{ 'uses': 'actions/checkout@v2' },