mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
fix(ci): split newline correctly in github workflow file (#9619)
GitHub doesn't like this syntax. Related: #9618
This commit is contained in:
8
.github/workflows/publish.yml
vendored
8
.github/workflows/publish.yml
vendored
@@ -16,9 +16,11 @@ concurrency:
|
||||
|
||||
jobs:
|
||||
publish-docker-images:
|
||||
if: ${{ \
|
||||
startsWith(inputs.release_name || github.event.release.name, 'gateway') || \
|
||||
startsWith(inputs.release_name || github.event.release.name, 'headless-client') }}
|
||||
if: >-
|
||||
${{
|
||||
startsWith(inputs.release_name || github.event.release.name, 'gateway') ||
|
||||
startsWith(inputs.release_name || github.event.release.name, 'headless-client')
|
||||
}}
|
||||
runs-on: ubuntu-22.04
|
||||
permissions:
|
||||
# Needed to upload artifacts to a release
|
||||
|
||||
Reference in New Issue
Block a user