Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
darrylmendillo committed Nov 30, 2020
1 parent 5422331 commit fbce663
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:20.04
FROM debian:10.6-slim

RUN apt-get update && \
apt-get install -y \
Expand Down
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
# consul_configs_submit_action
Submit Consul configurations to server
# Submit Consul Configurations

A GitHub Action that finds all configuration files and uploads them to a Consul Server
## Features

Searches all subdirectories of `location` using `regex` expression. All matched files will be uploaded to the Consul Server at `addr`.

## Example Usage
```
- name: consul
uses: pennsignals/consul_configs_submit_action@main
with:
addr: 'http://10.146.0.5:8500/v1/kv' # required
regex: '^.*.(yaml|yml|conf|json)$' # required
location: "./project/local" # optional (default = "./")
path: "organization/project/tag" # optional (default = "")
```

0 comments on commit fbce663

Please sign in to comment.