Skip to content

Add extra information of your AWS CodeBuild build via environment variables.

Notifications You must be signed in to change notification settings

alessandrobologna/aws-codebuild-extras

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 

Repository files navigation

aws-codebuild-extras Build Status

Add extra information of your AWS CodeBuild build via environment variables.

Usage

Add the following commands to the install or pre_build phase of your buildspec, as below:

version: 0.2

phases:
  install:
    commands:
      - curl -fsSL -o /tmp/install https://raw.githubusercontent.com/alessandrobologna/aws-codebuild-extras/master/install
      - . /tmp/install
  build:
    commands:
      - env
NAME VALUE
CI true
CODEBUILD true
CODEBUILD_GIT_AUTHOR Committer Name
CODEBUILD_GIT_AUTHOR_EMAIL user@example.com
CODEBUILD_GIT_BRANCH branch name
CODEBUILD_GIT_COMMIT commit hash
CODEBUILD_GIT_SHORT_HASH commit short hash
CODEBUILD_GIT_MESSAGE commit message
CODEBUILD_GIT_TAG git tag
CODEBUILD_PROJECT project
CODEBUILD_PULL_REQUEST Pull request number

About

Add extra information of your AWS CodeBuild build via environment variables.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%