Approve and Publish Beta Release Branch #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Approve and Publish Beta Release Branch | |
on: | |
workflow_run: | |
workflows: | |
- Create and Test Beta Release Branch | |
types: | |
- completed | |
workflow_dispatch: | |
inputs: | |
runId: | |
description: 'Run ID of the workflow run that created the vsixes' | |
required: true | |
type: string | |
jobs: | |
confirm_publish: | |
environment: publish | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }} # Only run this if the previous workflow was successful | |
name: 'Confirm Publish Beta Release' | |
steps: | |
- run: echo "Please confirm to publish the beta release" | |
publish_beta: | |
needs: confirm_publish | |
uses: ./.github/workflows/publishBeta.yml | |
secrets: inherit | |
with: | |
runId: ${{ inputs.runId || github.event.workflow_run.id }} |