Skip to content

Commit

Permalink
Merge pull request #62 from boanlab/github-action-ai-engine
Browse files Browse the repository at this point in the history
GitHub action ai engine
  • Loading branch information
isu-kim authored Feb 20, 2024
2 parents d3fb5d3 + b4ccb7c commit 899ec90
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/sentryflow-pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,13 @@ jobs:
echo "tag=tmp" >> $GITHUB_OUTPUT
fi
- name: Build Docker Image
- name: Build SentryFlow Docker Image
working-directory: ./sentryflow
run: |
make TAG=${{ steps.tag.outputs.tag }} image
- name: Build SentryFlow AI Engine Docker Image
working-directory: ./ai-engine
run: |
make TAG=${{ steps.tag.outputs.tag }} build
7 changes: 6 additions & 1 deletion .github/workflows/sentryflow-release-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,16 @@ jobs:
echo "tag=tmp" >> $GITHUB_OUTPUT
fi
- name: Build Docker Image
- name: Build SentryFlow Docker Image
working-directory: ./sentryflow
run: |
make TAG=${{ steps.tag.outputs.tag }} image
- name: Build SentryFlow AI Engine Docker Image
working-directory: ./ai-engine
run: |
make TAG=${{ steps.tag.outputs.tag }} build
# - name: Push Docker Image
# run: |
# docker push boanlab/sentryflow:${{ steps.tag.outputs.tag }}

0 comments on commit 899ec90

Please sign in to comment.