File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : test docker build on pr
2
+
3
+ on :
4
+ pull_request :
5
+ branches : [ "main"]
6
+
7
+ jobs :
8
+ testbuild :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : checkout code
12
+ uses : actions/checkout@v4
13
+ - name : Set up QEMU
14
+ uses : docker/setup-qemu-action@v3
15
+ with :
16
+ platforms : all
17
+ - name : Docker Setup Buildx
18
+ id : buildx
19
+ uses : docker/setup-buildx-action@v3
20
+ - name : Build
21
+ uses : docker/build-push-action@v5
22
+ with :
23
+ context : .
24
+ platforms : linux/arm/v7,linux/arm64
25
+ push : false
Original file line number Diff line number Diff line change 43
43
ALEXA_ACCESSCODE = os .getenv ('ALEXA_ACCESSCODE' )
44
44
45
45
# Other Globals
46
- VER = '2.5.1 '
46
+ VER = '2.5.2 '
47
47
USER_AGENT = f"vibinator.py/{ VER } "
48
48
49
49
# Setup logger
You can’t perform that action at this time.
0 commit comments