Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
rgstephens committed Nov 29, 2024
1 parent 1733f48 commit f31b5e9
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build-action-server.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Build an action server
uses: RasaHQ/rasa-action-server-gha@main
with:
# actions_directory: actions
# requirements_file: actions/requirements.txt
docker_image_name: 'stephens/action-server-example'
# More details on how to use GitHub secrets:
# https://docs.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets
docker_registry_login: stephens
docker_registry_password: ${{ secrets.DOCKER_HUB_PASSWORD }}
# More details about github context:
# https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#github-context
docker_image_tag: ${{ github.sha }}
28 changes: 28 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Standard Ignores
venv
__pycache__/
.DS_Store
.vscode/
.history/
.pytype/
.venv/
.pytest_cache/

# Rasa Ignores
credentials.yml
*.db-*
rasa.db*
*.db
results/
models/
chatroom/
.idea/
.rasa/
.cache/
.local/
.keras/
.global/
*.zip

.env
.python-version

0 comments on commit f31b5e9

Please sign in to comment.