GAE environment variable compiler
ActionsTags
(2)- If you need to store API keys or other sensitive information in app.yaml as environment variables for deployment on Google App Engine.
- If you don't like the idea to push secret environment variables app.yaml to GitHub.
- If you don't like the idea to store the environment variables in a datastore.
-
Modify the app.yaml file:
env_variables: MY_ENV_VAR1: $MY_ENV_VAR1 MY_ENV_VAR2: $MY_ENV_VAR2
-
Add this action to your workflow:
- uses: actions/checkout@v1 - uses: golang-enthusiast/[email protected] env: MY_ENV_VAR1: ${{ secrets.MY_ENV_VAR1 }} MY_ENV_VAR2: ${{ secrets.MY_ENV_VAR2 }}
Note: app.yaml file should be in the root project directory
Full example with deployment to Google App Engine:
deploy:
name: Deploy
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/checkout@v1
- uses: golang-enthusiast/[email protected]
env:
MY_ENV_VAR1: ${{ secrets.MY_ENV_VAR1 }}
MY_ENV_VAR2: ${{ secrets.MY_ENV_VAR2 }}
- uses: actions-hub/gcloud@master
env:
PROJECT_ID: ${{ secrets.GCLOUD_PROJECT_ID }}
APPLICATION_CREDENTIALS: ${{ secrets.GCLOUD_AUTH }}
CLOUDSDK_CORE_DISABLE_PROMPTS: 1
with:
args: app deploy app.yaml
GAE environment variable compiler is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.
About
v1.1
LatestBy dayleader
Tags
(2)GAE environment variable compiler is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.