8 lines
165 B
Bash
Executable File
8 lines
165 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
# Set the build arguments as environment variables
|
|
export BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')
|
|
export GIT_COMMIT=$(git rev-parse --short HEAD)
|
|
|