Skip to content

Commit b130bd5

Browse files
committed
Add builder for MRs/Renovate
1 parent 8575b11 commit b130bd5

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/build.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: build
2+
on:
3+
pull_request:
4+
branches:
5+
- master
6+
workflow_dispatch:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
with:
16+
fetch-depth: '0'
17+
18+
- name: Checkout docker-netbootxyz for container source files
19+
uses: actions/checkout@v4
20+
with:
21+
repository: netbootxyz/docker-netbootxyz
22+
path: docker-netbootxyz
23+
24+
- name: Build the Docker image
25+
run: docker build .

0 commit comments

Comments
 (0)