Skip to content

Commit

Permalink
run smoke tests when release workflow succeeds
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffy-mathew committed Apr 8, 2024
1 parent 5bb2290 commit 4f072e3
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/release-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,16 @@
name: Run CI tests and smoke tests

on: # yamllint disable-line rule:truthy
workflow_call:
workflow_run:
workflows: [ "Release" ]
types:
- completed
push:
tags:
- 'v*'

jobs:

if: ${{ github.event.workflow_run.conclusion == 'success' }}
ci-tests:
name: CI Tests
runs-on: ubuntu-latest
Expand Down

0 comments on commit 4f072e3

Please sign in to comment.