Skip to content

Releases: Steph0/dotenv-configserver

feat(v1.4.2): code quality + dependencies updates

03 Apr 10:23
8e3a6df
Compare
Choose a tag to compare

⚠️ Recommended: use the v1 git tag that targets the latest stable version instead of using specific release version tags.

What's Changed

Full Changelog: v1.3.0...v1.4.2

feat(v1.3.0): update of node + dependencies

17 Nov 16:01
ed903f7
Compare
Choose a tag to compare

⚠️ Recommended: use the v1 git tag that targets the latest stable version instead of using specific release version tags.

  • [modified] Dependencies update
  • [modified] Runs on Node16 (previously Node12)
  • [modified] Documentation + test action

feat(v1.2.0): update of dependencies + documentation

22 Sep 18:26
6fdf5d1
Compare
Choose a tag to compare

⚠️ Recommended: use the v1 git tag that targets the latest stable version instead of using specific release version tags.

  • [modified] npm audit fix for transitive dependencies
  • [modified] tool-cache, jest, ncc, eslint
  • [modified] README.md, test.event

feat(v1.1.0): Env to outputs & security updates

26 May 15:38
Compare
Choose a tag to compare

⚠️ Recommended: use the v1 git tag that targets the latest stable version instead of using specific release version tags.

  • [added] Action now also loads configuration to outputs so that configuration can be available to other jobs
  • [modified] Security updates + fix to match new @actions/github API
  • [modified] Documentation

feat(v1.0.0): First features

19 Apr 14:05
Compare
Choose a tag to compare

Implementing those features:

Parameter Required Description Example
repository true The repository ref / repository: "Steph0/dotenv-configserver"
token true This should be a token with access to your repository scoped in as a secret token: ${{ secrets.GITHUB_TOKEN }}
branch false The remote branch to checkout (default: main) branch: "staging"
destination false The working folder to write configuration to (default 'RUNNER_TEMP') destination: "/my/dest/folder"
directory false Look for file in configserver subdirectory (default '.').
Useful if your configserver hosts several config directories in it
directory: "my-app-dir"
filename false The config filename (default to '.env') filename: "my-application.env"
profile false Profile for file (ex: 'prod' will make tool
look for <filename_part>-.<filename_extension>)

If empty, won't apply.
profile: "prod"
Depending on filename will make action look for file:
my-application-prod.env
cleanup false If false, won't delete configuration files downloaded after loading to GITHUB_ENV (default: true) cleanup: false