Skip to content

Commit 6b38beb

Browse files
Add github workflow file
1 parent a007e8d commit 6b38beb

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/build.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: opencv-python-incode CI
2+
on:
3+
release:
4+
types: [published]
5+
6+
7+
jobs:
8+
build:
9+
runs-on: 'ubuntu-latest-16-cores'
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v3
13+
with:
14+
ref: '4.x'
15+
- name: Set up Docker Buildx
16+
uses: docker/setup-buildx-action@v2
17+
- name: test
18+
run: echo "hello" && echo "${{github.ref_name}}"
19+
# add getting tag

0 commit comments

Comments
 (0)