Skip to content

Instantly share code, notes, and snippets.

View m-makuch's full-sized avatar

Maksym Makuch m-makuch

View GitHub Profile
@m-makuch
m-makuch / index.yml
Last active December 4, 2022 17:56
baselime shared template
version: 0.0.21
application: bar
description: coolest templates in the world
provider: aws
### Keybase proof
I hereby claim:
* I am lastin on github.
* I am lastin (https://keybase.io/lastin) on keybase.
* I have a public key ASBT55CWsEt7d4ZtCO2QC3tlT8hYqfbuDkXMpiGG8xFeLAo
To claim this, I am signing this object:
@m-makuch
m-makuch / docker_git_tag.sh
Created May 4, 2020 15:15
Extract first 7 characters of git commit hash
#!/usr/bin/env bash
set -e
HEAD_HASH=$(git rev-parse HEAD)
HEAD_HASH=${HEAD_HASH:0:7}
echo $HEAD_HASH