Skip to content

Commit 2b10865

Browse files
committed
wip
1 parent 4d59529 commit 2b10865

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

.github/workflows/code-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- main
77
- 1.x
88
- 2.x
9-
pull_request:
9+
# pull_request:
1010

1111
jobs:
1212
code-style:

.github/workflows/docker-test.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Docker Test
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
build-and-push:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v4
12+
13+
- name: Set up QEMU
14+
uses: docker/setup-qemu-action@v3
15+
16+
- name: Set up Docker Buildx
17+
uses: docker/setup-buildx-action@v3
18+
19+
- name: Login to Docker Hub
20+
uses: docker/login-action@v2
21+
with:
22+
username: ${{ secrets.DOCKER_USERNAME }}
23+
password: ${{ secrets.DOCKER_PASSWORD }}
24+
25+
- name: Build
26+
run: |
27+
docker buildx build . \
28+
-f docker/Dockerfile \
29+
-t vitodeploy/vito:latest \
30+
--platform linux/arm64

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- main
77
- 1.x
88
- 2.x
9-
pull_request:
9+
# pull_request:
1010

1111
jobs:
1212
tests:

0 commit comments

Comments
 (0)