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 728d7b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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

0 comments on commit 728d7b8

Please sign in to comment.