Skip to content

Commit 43d0ae7

Browse files
Update ci.yml
1 parent 5bd244d commit 43d0ae7

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/ci.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# .github/workflows/ci.yml
12
name: CI / Test & Docker Build
23

34
on:
@@ -16,7 +17,7 @@ jobs:
1617
uses: actions/checkout@v4
1718

1819
# 2. Set up Python 3.10
19-
- name: Setup Python
20+
- name: Set up Python
2021
uses: actions/setup-python@v4
2122
with:
2223
python-version: '3.10'
@@ -31,17 +32,17 @@ jobs:
3132
- name: Run pytest
3233
run: pytest --maxfail=1 --disable-warnings -q
3334

34-
# 5. Set up Docker Buildx for multi-arch
35+
# 5. Set up Docker Buildx for multiarch
3536
- name: Set up Docker Buildx
3637
uses: docker/setup-buildx-action@v3
3738

38-
# 6. Build (and load) Docker image
39+
# 6. Build and load Docker image
3940
- name: Build and load Docker image
4041
uses: docker/build-push-action@v4
4142
with:
4243
context: .
4344
file: Dockerfile
4445
platforms: linux/amd64,linux/arm64
45-
load: true # load image into local Docker
46-
push: false # do not push anywhere
46+
load: true # load into the runner’s Docker daemon
47+
push: false # do not push to any registry
4748
tags: ffmpeg-api-service:latest

0 commit comments

Comments
 (0)