7 lines
239 B
Bash
7 lines
239 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo $GITHUB_TOKEN | docker login git.halis.io -u therbron
|
||
|
docker pull ubuntu:latest
|
||
|
docker tag ubuntu:latest git.halis.io/athens-school/runner-images:shell-build
|
||
|
docker push git.halis.io/athens-school/runner-images:shell-build
|