Skip to content

Commit

Permalink
feat(ci): allow releasing bridge separatelly
Browse files Browse the repository at this point in the history
  • Loading branch information
aesedepece committed May 17, 2023
1 parent ed93710 commit 3e8bb07
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/bridge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,19 @@ on:
workflow_run:
workflows: ["Release Tag"]
types: [completed]
workflow_dispatch:
inputs:
force:
description: 'Force execution of this action'
type: boolean
required: false
default: true

jobs:
Bridge:
runs-on: ubuntu-latest
environment: tags
if: ${{ github.event.workflow_run.conclusion == 'success' }}
if: ${{ github.event.workflow_run.conclusion == 'success' || inputs.force }}
steps:
- uses: actions/checkout@v3

Expand Down

0 comments on commit 3e8bb07

Please sign in to comment.