Skip to content

Commit

Permalink
fix: workaround for array support
Browse files Browse the repository at this point in the history
  • Loading branch information
siljekristensen committed May 31, 2023
1 parent 401db52 commit 130cc14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
description: Tag a successfully built image with the tag latest.
runs-on:
type: string
default: self-hosted
default: "['self-hosted']"
description: Type of runner for the jobs. For non-self-hosted runners, use ubuntu-latest for example.
trivy-enabled:
type: boolean
Expand Down Expand Up @@ -75,7 +75,7 @@ on:
jobs:
build:
name: Build and push
runs-on: ${{ inputs.runs-on }}
runs-on: ${{ fromJson(inputs.runs-on) }}
steps:

#
Expand Down

0 comments on commit 130cc14

Please sign in to comment.