Skip to content

Commit

Permalink
Merge pull request #110 from ulucinar/fix-ssop
Browse files Browse the repository at this point in the history
Remove "optional: true" from inputs of publish service artifacts reusable workflow
  • Loading branch information
ulucinar authored May 14, 2023
2 parents 440b2ed + 219e9ca commit 62ed35c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 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 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 62ed35c

Please sign in to comment.