Examining environment variables in GitHub CI workflows


LearnAzureDevOps-O5

Examining environment variables in GitHub CI workflows

Environment variables in GitHub Actions provide a way to store and access sensitive information, configuration values, or temporary data across jobs and steps in CI/CD workflows. These variables are critical for managing secrets, configuring build environments, and ensuring secure handling of sensitive data.

Types of Environment Variables

  1. GitHub-Defined Variables: Automatically available in workflows (e.g., GITHUB_TOKEN, GITHUB_REPOSITORY, GITHUB_SHA).

  2. Custom Environment Variables: Defined and managed within the workflow (env key in jobs or steps).

  3. Secrets: Encrypted environment variables that are defined and stored in GitHub Secrets (e.g., API keys, database credentials).

1. GitHub-Defined Environment Variables

GitHub provides built-in environment variables that are useful for workflow metadata and GitHub-specific actions:

VariableDescription
GITHUB_WORKFLOWName of the current workflow.
GITHUB_RUN_IDUnique ID of the current workflow run.
GITHUB_REPOSITORYFull name of the repository (owner/repo).
GITHUB_SHASHA of the current commit.
GITHUB_REFThe reference (branch or tag) for the current run.
GITHUB_TOKENA GitHub token with permissions to perform actions on the repository.
RUNNER_OSOperating system on the runner.

2. Custom Environment Variables

Custom environment variables are defined within the workflow using the env key at the job level or step level:

Example Workflow with Custom Environment Variables:

In this example:

NODE_ENV and API_URL are custom environment variables.

3. Using Secrets as Environment Variables

GitHub Secrets are encrypted environment variables that are useful for storing sensitive information like API keys, tokens, or credentials.

Defining a Secret:

  1. Navigate to the Settings tab of your repository.

  2. Go to Secrets.

  3. Add a new secret (e.g., MY_API_KEY).

Example Using Secrets:

In this case, MY_API_KEY is securely accessed via the GitHub Secrets system.

4. Accessing Environment Variables in Steps

You can access both custom environment variables and secrets within different steps of a workflow.

Example Access in a Step:

or

5. Conditional Logic with Environment Variables

You can define conditional logic based on the value of environment variables.

Example: Conditional Step Execution

Best Practices for Using Environment Variables

  1. Use Secrets for Sensitive Data: Never hard-code sensitive information into workflows. Use encrypted secrets for storing API keys, tokens, or credentials.

  2. Limit Access: Use permissions in workflows to restrict which environment variables are exposed to specific steps or jobs.

  3. Environment Variables in Matrix Testing: Use dynamic values in environment variables to handle different configurations or matrix testing scenarios.

  4. Avoid Hardcoding: Always define environment variables declaratively within the workflow YAML file for maintainability.

  5. Debugging with Debug Logs: Enable debugging (ACTIONS_STEP_DEBUG) for detailed information on environment variables in use.

Summary

By leveraging environment variables effectively, GitHub Actions ensure secure, flexible, and dynamic CI workflows.

Related Articles


Rajnish, MCT

Leave a Reply

Your email address will not be published. Required fields are marked *


SUBSCRIBE

My newsletter for exclusive content and offers. Type email and hit Enter.

No spam ever. Unsubscribe anytime.
Read the Privacy Policy.