Skip to content

Merge branch 'main' of https://github.com/MrGreyfun/Local-Code-Interp… #7

Merge branch 'main' of https://github.com/MrGreyfun/Local-Code-Interp…

Merge branch 'main' of https://github.com/MrGreyfun/Local-Code-Interp… #7

Workflow file for this run

name: Docker Build and Push
on:
push:
branches:
- main
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: zh3305/localcodeinterpreter:latest