Skip to content

Commit ab89d32

Browse files
build: add action to build container image
1 parent 7a951f1 commit ab89d32

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/build.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Docker Build Validation
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout Repository
13+
uses: actions/checkout@v3
14+
15+
- name: Build Docker Image
16+
run: |
17+
docker build -t github-readme-stats:latest .

0 commit comments

Comments
 (0)