Skip to content

add copilot web

add copilot web #886

Workflow file for this run

name: Build
on:
push:
branches:
- main
workflow_dispatch:
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Controller
uses: docker/build-push-action@v3
with:
push: true
tags: shaowenchen/ops-controller-manager:latest
file: Dockerfile
- name: Build and push Server
uses: docker/build-push-action@v3
with:
push: true
tags: shaowenchen/ops-server:latest
file: Dockerfile-Server
- name: Build and push Cli
uses: docker/build-push-action@v3
with:
push: true
tags: shaowenchen/ops-cli:latest
file: Dockerfile-Cli