Skip to content

Commit

Permalink
🚚 cd: add ci dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnPetros committed Jun 14, 2024
1 parent 61da346 commit 008b477
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CD

on:
workflow_run:
workflows: [CI]
types:
- completed

jobs:
CD:
name: Continuous Delivery
runs-on: ubuntu-latest

if: ${{ github.event.workflow_run.conclusion == 'success' }}

step:
- name: Checkout repository
uses: actions/checkout@v3

0 comments on commit 008b477

Please sign in to comment.