Skip to content

Commit

Permalink
build: add action to build container image
Browse files Browse the repository at this point in the history
  • Loading branch information
mahyarmirrashed committed Dec 20, 2024
1 parent 7a951f1 commit 5efe12f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Docker Build Validation

on:
push:
branches:
- main

jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3

- name: Build Docker Image
run: |
docker build -t github-readme-stats:latest .

0 comments on commit 5efe12f

Please sign in to comment.