Skip to content

Commit c537c62

Browse files
committed
fix: update
Signed-off-by: Innei <[email protected]>
1 parent 40b1434 commit c537c62

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/docker.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,15 @@ jobs:
1616
- name: Checkout
1717
uses: actions/checkout@v3
1818

19-
- uses: addnab/docker-run-action@v3
20-
with:
21-
image: nerdfonts/patcher:latest
22-
options: --rm -v ./lig:/in -v ./out:/out nerdfonts/patcher -c
19+
- name: Set up QEMU
20+
uses: docker/setup-qemu-action@v2
21+
- name: Set up Docker Buildx
22+
uses: docker/setup-buildx-action@v2
23+
24+
- name: Run Docker container
25+
run: |
26+
docker run -v $PWD/lig:/in -v $PWD/out:/out nerdfonts/patcher -c || exit 0
27+
2328
- name: Bundle
2429
run: |
2530
zip -r lig.zip out

out/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)