mirror of
https://github.com/Hypfer/Valetudo.git
synced 2025-10-26 11:27:27 +00:00
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:
parent
dddf8cdad7
commit
2f5ef368d8
2
.github/workflows/nightly_build.yml
vendored
2
.github/workflows/nightly_build.yml
vendored
@ -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' },
|
||||
|
||||
Loading…
Reference in New Issue
Block a user