mirror of
https://github.com/ae-utbm/sith.git
synced 2024-10-31 19:38:04 +00:00
21 lines
473 B
YAML
21 lines
473 B
YAML
name: Deploy to production
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: [Unit Testing]
|
|
types: [completed]
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
on-success:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
steps:
|
|
- run: echo 'The triggering workflow passed'
|
|
|
|
on-failure:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
|
|
steps:
|
|
- run: echo 'The triggering workflow failed' |