mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-29 15:52:26 -05: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}"
|