Skip to content

Commit

Permalink
Fixed invalid syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbt committed Feb 1, 2024
1 parent b73ce22 commit a4820e2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_multiarch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:

jobs:
build_amd64:
if: !'scheduled_pipeline' == << pipeline.trigger_source >> && ${{ inputs.ruby_version }} && !'nightly' == ${{ inputs.ruby_version }}
if: "${{ inputs.ruby_version }} && !'nightly' == ${{ inputs.ruby_version }}"

defaults:
run:
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
push_tags: "${{ env.push_tags }}"

build_arm64:
if: !'scheduled_pipeline' == << pipeline.trigger_source >> && ${{ inputs.ruby_version }} && !'nightly' == ${{ inputs.ruby_version }}
if: "${{ inputs.ruby_version }} && !'nightly' == ${{ inputs.ruby_version }}"

defaults:
run:
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
push_tags: "${{ env.push_tags }}"

deploy_multiarch:
if: !'scheduled_pipeline' == << pipeline.trigger_source >> && ${{ inputs.ruby_version }} && !'nightly' == ${{ inputs.ruby_version }}
if: "${{ inputs.ruby_version }} && !'nightly' == ${{ inputs.ruby_version }}"

defaults:
run:
Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:
image_version_suffix=-dev
deploy_multiarch_ghcr:
if: !'scheduled_pipeline' == << pipeline.trigger_source >> && ${{ inputs.ruby_version }} && !'nightly' == ${{ inputs.ruby_version }}
if: "${{ inputs.ruby_version }} && !'nightly' == ${{ inputs.ruby_version }}"

defaults:
run:
Expand Down

0 comments on commit a4820e2

Please sign in to comment.