All Projects → danielr1996 → envsubst-action

danielr1996 / envsubst-action

Licence: MIT license
Github Action for envsubst

Programming Languages

Dockerfile
14818 projects
shell
77523 projects

Projects that are alternatives of or similar to envsubst-action

redux-reducer-async
Create redux reducers for async behaviors of multiple actions.
Stars: ✭ 14 (-33.33%)
Mutual labels:  action
IndRNN pytorch
Independently Recurrent Neural Networks (IndRNN) implemented in pytorch.
Stars: ✭ 112 (+433.33%)
Mutual labels:  action
s2i-build
Github Action to build an OCI-compatible container image from source code.
Stars: ✭ 26 (+23.81%)
Mutual labels:  action
setup-bats
GitHub Action to setup BATS testing framework
Stars: ✭ 25 (+19.05%)
Mutual labels:  action
upload-to-discord
A GitHub Action that uploads a file to Discord channel.
Stars: ✭ 44 (+109.52%)
Mutual labels:  action
setup-hashlink
A github action to install and setup Hashlink
Stars: ✭ 13 (-38.1%)
Mutual labels:  action
action-homebrew-bump-formula
⚙️ A GitHub Action to easily bump Homebrew formula on new release
Stars: ✭ 68 (+223.81%)
Mutual labels:  action
clojure-dependency-update-action
A simple GitHub Actions job to create Pull Requests for outdated dependencies in clojure projects
Stars: ✭ 37 (+76.19%)
Mutual labels:  action
dart-package-publisher
Action to Publish Dart / Flutter Package To https://pub.dev When you need to publish a package, just bump the version in pubspec.yaml
Stars: ✭ 45 (+114.29%)
Mutual labels:  action
gitavscan
Git Anti-Virus Scan Action - Detect trojans, viruses, malware & other malicious threats.
Stars: ✭ 23 (+9.52%)
Mutual labels:  action
actions
Set of actions for implementing CI/CD with werf and GitHub Actions
Stars: ✭ 67 (+219.05%)
Mutual labels:  action
Vapecord-ACNL-Plugin
Animal Crossing NL Vapecord Public Plugin WIP
Stars: ✭ 72 (+242.86%)
Mutual labels:  action
verify-linked-issue-action
A GitHub action that verifies your pull request contains a reference to an issue.
Stars: ✭ 18 (-14.29%)
Mutual labels:  action
action-eslint
🐋🐬 TypeScript/JavaScript ESLint action
Stars: ✭ 24 (+14.29%)
Mutual labels:  action
reuse-action
A Github action to check repositories for REUSE compliance
Stars: ✭ 31 (+47.62%)
Mutual labels:  action
GitHub-Pages-deploy
A GitHub Action to deploy a static site on GitHub Pages.
Stars: ✭ 42 (+100%)
Mutual labels:  action
setup-jdk
(DEPRECATED) Set up your GitHub Actions workflow with a specific version of AdoptOpenJDK
Stars: ✭ 32 (+52.38%)
Mutual labels:  action
lamp-luwak
Service-oriented state management for React
Stars: ✭ 12 (-42.86%)
Mutual labels:  action
chronoman
Utility class to simplify use of timers created by setTimeout
Stars: ✭ 15 (-28.57%)
Mutual labels:  action
redux-lightweight
Write one business logic instead of writing actions, action types and reducers
Stars: ✭ 41 (+95.24%)
Mutual labels:  action

Envsubst Action

This action allows you to substitute environment variables in a file.

Usage

template.json

{
  "version": "${VERSION}",
  "instance": "${INSTANCE}"
}

.github/workflows/pipeline.yaml

- uses: danielr1996/[email protected]
  env:
      VERSION: 1.2.3
      INSTANCE: staging
  with:
    input: template.json
    output: deployment.json

deployment.json

{
  "version": "1.2.3",
  "instance": "staging"
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].