-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from AngelOnFira/add-multiline-secrets
- Loading branch information
Showing
7 changed files
with
99 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -202,5 +202,3 @@ jobs: | |
envkey_SECRET_KEY: '' | ||
fail_on_empty: true | ||
continue-on-error: true | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
name: "Create .env file" | ||
description: "Github Action to create a .env file with Github Secrets" | ||
author: "Forest Anderson" | ||
name: 'Create .env file' | ||
description: 'GitHub Action to create a .env file with GitHub Secrets' | ||
author: 'Forest Anderson' | ||
branding: | ||
icon: "briefcase" | ||
color: "gray-dark" | ||
icon: 'briefcase' | ||
color: 'gray-dark' | ||
inputs: | ||
file_name: | ||
description: "The filename for the envfile" | ||
default: ".env" | ||
description: 'The filename for the envfile' | ||
default: '.env' | ||
directory: | ||
description: "The directory to put the envfile in" | ||
default: "" | ||
description: 'The directory to put the envfile in' | ||
default: '' | ||
fail_on_empty: | ||
description: "Fail if an env key is an empty string" | ||
default: "false" | ||
description: 'Fail if an env key is an empty string' | ||
default: 'false' | ||
sort_keys: | ||
description: "Sort the keys alphabetically" | ||
default: "false" | ||
description: 'Sort the keys alphabetically' | ||
default: 'false' | ||
runs: | ||
using: 'node16' | ||
main: 'dist/index.js' |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters