Skip to content

Commit

Permalink
Remove question marks in workflow dispatch inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
mehmetkillioglu committed Sep 26, 2023
1 parent 371db78 commit e6fd2f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tii-depthai-ctrl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ on:
workflow_dispatch:
inputs:
build_amd64:
description: 'Build for AMD64?'
description: 'Build for AMD64'
required: true
default: true
type: boolean
build_arm64:
description: 'Build for ARM64?'
description: 'Build for ARM64'
required: true
default: false
type: boolean
build_riscv64:
description: 'Build for RISCV64?'
description: 'Build for RISCV64'
required: true
default: false
type: boolean
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
echo "Building for $qemu_platforms"
- name: Setup QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
with:
platforms: ${{ steps.platforms.outputs.qemu }}

Expand Down

0 comments on commit e6fd2f4

Please sign in to comment.