diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml new file mode 100644 index 0000000..f62f1be --- /dev/null +++ b/.github/workflows/docker.yaml @@ -0,0 +1,99 @@ +name: Build and push Docker images + +on: + push: + branches: + - main + tags: + - "v*.*.*" + +jobs: + server: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Login to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Docker meta + id: docker_meta + uses: docker/metadata-action@v5 + with: + images: ghcr.io/zazukoians/qlever-server + tags: | + type=ref,event=branch + type=semver,prefix=v,pattern={{version}} + type=semver,prefix=v,pattern={{major}}.{{minor}} + type=semver,prefix=v,pattern={{major}} + type=sha + + - name: Build and push Docker images + id: docker_build + uses: docker/build-push-action@v6 + with: + context: ./docker/ + file: ./server.Dockerfile + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.docker_meta.outputs.tags }} + labels: ${{ steps.docker_meta.outputs.labels }} + platforms: | + linux/amd64 + linux/arm64 + + ui: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Login to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Docker meta + id: docker_meta + uses: docker/metadata-action@v5 + with: + images: ghcr.io/zazukoians/qlever-ui + tags: | + type=ref,event=branch + type=semver,prefix=v,pattern={{version}} + type=semver,prefix=v,pattern={{major}}.{{minor}} + type=semver,prefix=v,pattern={{major}} + type=sha + + - name: Build and push Docker images + id: docker_build + uses: docker/build-push-action@v6 + with: + context: ./docker/ + file: ./ui.Dockerfile + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.docker_meta.outputs.tags }} + labels: ${{ steps.docker_meta.outputs.labels }} + platforms: | + linux/amd64 + linux/arm64