Skip to content

Commit

Permalink
Remove "optional: true" from inputs.concurrency in publish serice art…
Browse files Browse the repository at this point in the history
…ifacts

Signed-off-by: Alper Rifat Ulucinar <[email protected]>
  • Loading branch information
ulucinar committed May 12, 2023
1 parent 440b2ed commit 6c1d052
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/provider-publish-service-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,13 @@ on:
type: string
size:
description: "Number of packages to build and push with each matrix build job"
default: '30'
required: true
default: 30
type: number
type: string
concurrency:
description: "Number of parallel package builds in each matrix job"
optional: true
default: 1
type: number
default: '1'
type: string
secrets:
UPBOUND_MARKETPLACE_PUSH_ROBOT_USR:
required: true
Expand All @@ -42,7 +41,7 @@ env:

jobs:
index:
runs-on: [e2-standard-8, linux]
runs-on: ubuntu-22.04
outputs:
indices: ${{ steps.calc.outputs.indices }}
steps:
Expand All @@ -56,7 +55,7 @@ jobs:
index: ${{ fromJSON(needs.index.outputs.indices) }}

needs: index
runs-on: [e2-standard-8, linux]
runs-on: ubuntu-22.04
steps:
- name: Setup QEMU
uses: docker/setup-qemu-action@v1
Expand Down

0 comments on commit 6c1d052

Please sign in to comment.