We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c78268 commit 42a1db3Copy full SHA for 42a1db3
.github/workflows/ci.yml
@@ -15,3 +15,25 @@ jobs:
15
- run: bun install
16
- run: bun run typecheck
17
- 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
37
+ push: true
38
+ platforms: linux/amd64,linux/arm64
39
+ tags: ghcr.io/healthsamurai/meilisearch-docs-scraper:latest
0 commit comments