Skip to content

Commit

Permalink
add item-monitor to pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesClonk committed Mar 29, 2024
1 parent 5931979 commit 0f15fd6
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,20 @@ jobs:
if: ${{ always() }}
run: ./cleanup.sh

item-monitor:
if: "!contains(github.event.head_commit.message, 'skip')"
name: item-monitor
needs: [ repo-mirrorer ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: deploy item-monitor app
working-directory: item-monitor
run: ./deploy.sh
- name: cleanup
if: ${{ always() }}
run: ./cleanup.sh

testing:
if: "!contains(github.event.head_commit.message, 'skip')"
name: k8s e2e testing
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/item-monitor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: item-monitor application

on:
workflow_dispatch:

jobs:
item-monitor:
name: item-monitor
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: deploy item-monitor app
working-directory: item-monitor
run: ./deploy.sh
env:
SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }}
- name: cleanup
if: ${{ always() }}
run: ./cleanup.sh

0 comments on commit 0f15fd6

Please sign in to comment.