Skip to content

Commit

Permalink
Merge branch 'oni-validator:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
datanexus-vincent authored Jan 18, 2024
2 parents 87e804c + 7dfe18c commit 1482fdf
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build and Push Docker Image

on:
push:
branches:
- main # Trigger the action only when code is pushed to the main branch

jobs:
build:
runs-on: ubuntu-20.04

steps:
- name: Check out code
uses: actions/checkout@v4

- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: kw1k/yoda:latest
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yoda-executor-local
## yoda-executor-local

### Test

Expand Down

0 comments on commit 1482fdf

Please sign in to comment.