rasahq/Build Action Server image
Build a Docker image with custom actions for Rasa Action Server
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stalelast commit Jun 22, 2021
- License
- Apache 2.0
Pinned Snippet
uses: rasahq/rasa-action-server-gha@f642e174f0ce3d2b9ac47699580b3dd8cd7ae68f # v1.0.4tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| actions_directory | Path to the directory with actions. | no | ${{ github.workspace }}/actions |
| requirements_file | Path to the requirements.txt file. | no | — |
| docker_registry | Name of the docker registry which the Docker image should be published to. | no | docker.io |
| docker_registry_login | Login name for the Docker registry. | yes | — |
| docker_registry_password | Password for the Docker registry. | yes | — |
| docker_image_name | Docker image name. | no | action_server |
| docker_image_tag | Docker image tag. | no | ${{ github.run_id }} |
| docker_registry_push | Push a docker image to the registry. If `False` the user can add manual extra steps in their workflow which use the built image. | no | true |
| dockerfile | Path to a custom Dockerfile. | no | — |
| rasa_sdk_version | Version of the Rasa SDK which should be used to build the image. | no | latest |
| docker_build_args | List of build-time variables. | no | — |
Outputs
| name | description |
|---|---|
| docker_image_name | Docker image name, the name contains the registry address and the image name, e.g., `docker.io/my_account/my_image_name`. |
| docker_image_tag | Tag of the image, e.g., `v1.0`. |
| docker_image_full_name | Docker image name (contains an address to the registry, image name, and tag), e.g., `docker.io/my_account/my_image_name:v1.0`. |