Skip to content

Commit

Permalink
feat: add Github Action to build to Harbor
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnacioHeredia authored Jul 19, 2024
1 parent 30c9409 commit 209f789
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build image

# Note:
# HARBOR_URL, HARBOR_USERNAME, HARBOR_TOKEN are defined at the organization level

on: workflow_dispatch

jobs:
build:
runs-on: ubuntu-latest

steps:

- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Login to Harbor
uses: docker/login-action@v2
with:
registry: ${{ vars.HARBOR_URL }}
username: ${{ vars.HARBOR_USERNAME }}
password: ${{ secrets.HARBOR_TOKEN }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ vars.HARBOR_URL }}/ai4os/deepaas_ui:latest
file: ./Dockerfile

0 comments on commit 209f789

Please sign in to comment.