Skip to content

Commit

Permalink
Inputs don't exist on event trigger!
Browse files Browse the repository at this point in the history
  • Loading branch information
dj-maisy committed Jan 11, 2024
1 parent fd91677 commit 7e0a89b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-multiarch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Checkout from GitHub
uses: actions/[email protected]
with:
ref: ${{ inputs.gitRef }}
ref: ${{ inputs.gitRef || github.ref }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
with:
file: base.Dockerfile
context: .
push: ${{ inputs.pushToRegistry }}
push: ${{ inputs.pushToRegistry || false }}
platforms: linux/amd64,linux/arm64
build-args: |
RUBY_MAJOR=${{ matrix.version.rubyver[0] }}.${{ matrix.version.rubyver[1] }}
Expand All @@ -123,7 +123,7 @@ jobs:
with:
file: base.Dockerfile
context: .
push: ${{ inputs.pushToRegistry }}
push: ${{ inputs.pushToRegistry || false }}
platforms: linux/amd64,linux/arm64
build-args: |
RUBY_MAJOR=${{ matrix.version.rubyver[0] }}.${{ matrix.version.rubyver[1] }}
Expand Down

0 comments on commit 7e0a89b

Please sign in to comment.