Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
danteay committed May 23, 2024
1 parent f6912b5 commit e1d5b92
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@ process of keeping configuration files up-to-date across your S3 storage.
| `aws_region` | AWS Region | false | `us-east-1` |
| `dry_run` | Do not create any persistent changes over the configurations and just show an overview of the changes | false | false |

## Runs
## Supported formats

- **Using**: docker
- **Image**: Dockerfile
- JSON
- YAML
- TOML

## Example Usage

Expand Down
2 changes: 1 addition & 1 deletion src/action.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default class Action {
await this.s3.createFile(
this.inputs.bucket,
this.inputs.destination,
JSON.stringify(this.newConfig)
this.oldConfigParser.stringify(this.newConfig)
);
}

Expand Down

0 comments on commit e1d5b92

Please sign in to comment.