Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Patches environment files (.env) with configuration values from JSON, supporting
### Single file patching
```yaml
- name: Patch .env file
uses: KoalaOps/patch-env-files@v1
uses: skyhook-io/patch-env-files@v1
with:
patches: |
{
Expand All @@ -29,7 +29,7 @@ Patches environment files (.env) with configuration values from JSON, supporting
### Multiple files patching
```yaml
- name: Patch multiple env files
uses: KoalaOps/patch-env-files@v1
uses: skyhook-io/patch-env-files@v1
with:
patches: |
{
Expand All @@ -49,7 +49,7 @@ Patches environment files (.env) with configuration values from JSON, supporting
### With base64 encoded patches
```yaml
- name: Patch with base64 config
uses: KoalaOps/patch-env-files@v1
uses: skyhook-io/patch-env-files@v1
with:
patches: ${{ secrets.ENV_PATCHES_B64 }}
```
Expand Down Expand Up @@ -88,7 +88,7 @@ JSON object mapping file paths to their key-value patches:
### Dynamic version injection
```yaml
- name: Inject build metadata
uses: KoalaOps/patch-env-files@v1
uses: skyhook-io/patch-env-files@v1
with:
patches: |
{
Expand All @@ -103,7 +103,7 @@ JSON object mapping file paths to their key-value patches:
### Environment-specific configuration
```yaml
- name: Apply environment config
uses: KoalaOps/patch-env-files@v1
uses: skyhook-io/patch-env-files@v1
with:
path: ./deploy
patches: |
Expand All @@ -123,7 +123,7 @@ JSON object mapping file paths to their key-value patches:
```yaml
- name: Apply runtime overrides if provided
if: inputs.runtime_patches_b64 != ''
uses: KoalaOps/patch-env-files@v1
uses: skyhook-io/patch-env-files@v1
with:
patches: ${{ inputs.runtime_patches_b64 }}
```
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: 'Patch Env Files'
description: 'Patch environment files with configuration values from JSON'
author: 'KoalaOps'
author: 'Skyhook'

branding:
icon: 'settings'
Expand Down