mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-26 13:46:39 +00:00
8 lines
132 B
Bash
8 lines
132 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
BRANCH_NAME="$(git rev-parse --abbrev-ref HEAD)"
|
||
|
|
||
|
docker push "superseriousbusiness/gotosocial:${BRANCH_NAME}"
|