Skip to content

Commit

Permalink
fix for platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
jens-maus committed Nov 20, 2023
1 parent 617071f commit d097e1b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ on:
required: true
default: "false"
platforms:
description: 'List of platforms to build (comma seperated)'
description: 'List of platforms to build (comma seperated, e.g. "rpi3","rpi4")'
required: true
default: ""
default: 'all'
type: string

# default read-only permission
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: ${{ fromJSON(format('[{0}]', github.event.inputs.platforms || '"rpi0","rpi2","rpi3","rpi4","rpi5","tinkerboard","odroid-c2","odroid-c4","odroid-n2","intelnuc","ova","oci_amd64",oci_arm64","oci_arm"')) }}
platform: ${{ fromJSON(format('[{0}]', github.event.inputs.platforms != 'all' || '"rpi0","rpi2","rpi3","rpi4","rpi5","tinkerboard","odroid-c2","odroid-c4","odroid-n2","intelnuc","ova","oci_amd64",oci_arm64","oci_arm"')) }}

steps:
- name: Checkout Code
Expand Down

0 comments on commit d097e1b

Please sign in to comment.