Skip to content

Commit

Permalink
Merge pull request crossplane-contrib#681 from turkenf/publish-servic…
Browse files Browse the repository at this point in the history
…e-artifacts

Add caller workflow for publishing service artifacts
  • Loading branch information
turkenf committed May 2, 2023
2 parents 80a236d + c6054d1 commit 5d46fb0
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/publish-service-artifacts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Publish Service Artifacts

on:
workflow_dispatch:
inputs:
subpackages:
description: 'Subpackages to be built individually (e.g. monolith config ec2)'
default: 'monolith'
required: false
version:
description: 'Provider version (e.g. v0.1.0)'
required: true

jobs:
publish-service-artifacts:
uses: upbound/uptest/.github/workflows/provider-publish-service-artifacts.yml@main
with:
subpackages: ${{ github.event.inputs.subpackages }}
version: ${{ github.event.inputs.version }}
secrets:
UPBOUND_MARKETPLACE_PUSH_ROBOT_USR: ${{ secrets.UPBOUND_MARKETPLACE_PUSH_ROBOT_USR_RC }}
UPBOUND_MARKETPLACE_PUSH_ROBOT_PSW: ${{ secrets.UPBOUND_MARKETPLACE_PUSH_ROBOT_PSW_RC }}

0 comments on commit 5d46fb0

Please sign in to comment.