Skip to content

Commit

Permalink
run ci on push only, always teardown
Browse files Browse the repository at this point in the history
Signed-off-by: Jack Luar <[email protected]>
  • Loading branch information
luarss committed Oct 29, 2024
1 parent bbd992e commit a75f020
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
name: ORAssistant CI
run-name: ${{ github.actor }} started CI

on: [push, pull_request]
on:
push:
branches:
- master
pull_request:

jobs:
build-backend-docker:
Expand All @@ -25,5 +29,6 @@ jobs:
run: |
make docker
- name: Teardown
if: always()
run: |
docker compose down --remove-orphans

0 comments on commit a75f020

Please sign in to comment.