Skip to content

Commit

Permalink
A CI for running Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinp0 committed Nov 1, 2023
1 parent e6a583e commit f261606
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/docker_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Docker Image Build and Push

on:
schedule:
- cron: "0 0 */7 * *" # every 7 days
push:
branches:
- main
pull_request:
branches:
- main
paths:
- './Dockerfile'
jobs:
ci-check:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build ARC
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: false

build-and-push:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build and push ARC
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/arc:latest

0 comments on commit f261606

Please sign in to comment.