Skip to content

Commit 42a1db3

Browse files
committed
fix build
1 parent 2c78268 commit 42a1db3

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,25 @@ jobs:
1515
- run: bun install
1616
- run: bun run typecheck
1717
- run: bun run build
18+
19+
docker:
20+
needs: build
21+
if: github.event_name == 'push'
22+
runs-on: ubuntu-latest
23+
permissions:
24+
contents: read
25+
packages: write
26+
steps:
27+
- uses: actions/checkout@v4
28+
- uses: docker/setup-qemu-action@v3
29+
- uses: docker/setup-buildx-action@v3
30+
- uses: docker/login-action@v3
31+
with:
32+
registry: ghcr.io
33+
username: ${{ github.actor }}
34+
password: ${{ secrets.GITHUB_TOKEN }}
35+
- uses: docker/build-push-action@v6
36+
with:
37+
push: true
38+
platforms: linux/amd64,linux/arm64
39+
tags: ghcr.io/healthsamurai/meilisearch-docs-scraper:latest

0 commit comments

Comments
 (0)