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 14, 2023
1 parent 440b2ed commit 3b54cec
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/provider-publish-service-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ 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'
required: false
type: string
secrets:
UPBOUND_MARKETPLACE_PUSH_ROBOT_USR:
required: true
Expand All @@ -42,7 +42,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 +56,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 Expand Up @@ -136,4 +136,4 @@ jobs:

- name: Publish Artifacts
run: |
make -j ${{ steps.build_artifacts.outputs.num_packages }} SUBPACKAGES="${{ steps.packages.outputs.target }}" XPKG_REG_ORGS=xpkg.upbound.io/upbound-release-candidates XPKG_REG_ORGS_NO_PROMOTE=xpkg.upbound.io/upbound-release-candidates VERSION=${{ inputs.version }} CONCURRENCY="${{ inputs.concurrency }}" publish
make -j ${{ steps.build_artifacts.outputs.num_packages }} SUBPACKAGES="${{ steps.packages.outputs.target }}" XPKG_REG_ORGS=xpkg.upbound.io/upbound-release-candidates XPKG_REG_ORGS_NO_PROMOTE=xpkg.upbound.io/upbound-release-candidates BRANCH_NAME=main VERSION=${{ inputs.version }} CONCURRENCY="${{ inputs.concurrency }}" publish

0 comments on commit 3b54cec

Please sign in to comment.