This commit is contained in:
TingluoHuang
2021-10-28 18:40:09 -04:00
parent dfcfae49e5
commit 4fa691f73e
26 changed files with 18818 additions and 15 deletions

20
.github/workflows/docker-image.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: Docker Image CI
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: |
cd src
echo "${{secrets.docker_hub_token}}" | docker login --username huangtingluo --password-stdin
docker build . --file Dockerfile --tag huangtingluo/kube-runner:v0
docker push huangtingluo/kube-runner:v0