Update meilisearch.md: replace URLs #4111
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-FileCopyrightText: 2024 Aine | |
| # SPDX-FileCopyrightText: 2026 Slavi Pantaleev | |
| # | |
| # SPDX-License-Identifier: AGPL-3.0-or-later | |
| --- | |
| name: CI (main and tags) | |
| on: # yamllint disable-line rule:truthy | |
| push: | |
| branches: ["main"] | |
| tags: ["v*"] | |
| permissions: | |
| checks: write | |
| contents: write | |
| packages: write | |
| pull-requests: read | |
| jobs: | |
| build-publish: | |
| name: Build and Publish | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7.0.1 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v4.2.0 | |
| - name: Login to ghcr.io | |
| uses: docker/login-action@v4.6.0 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Extract metadata (tags, labels) for Docker | |
| id: meta | |
| uses: docker/metadata-action@v6.2.0 | |
| with: | |
| images: ghcr.io/${{ github.repository }} | |
| tags: | | |
| type=raw,value=latest,enable=${{ github.ref_name == 'main' }} | |
| type=semver,pattern={{raw}} | |
| - name: Build and push | |
| uses: docker/build-push-action@v7.3.0 | |
| with: | |
| platforms: linux/amd64,linux/arm64 | |
| context: . | |
| push: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} |