name: Build and Publish Docker Image on: push: branches: [ main, master ] tags: [ 'v*.*.*' ] pull_request: branches: [ main, master ] workflow_dispatch: env: # Use docker.io for Docker Hub, ghcr.io for GitHub Container Registry REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository }} jobs: build-and-push: runs-on: ubuntu-latest permissions: contents: read packages: write id-token: write steps: - name: Checkout repository uses: actions/checkout@v4 # Build frontend before Docker build - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: '18' cache: 'npm' cache-dependency-path: frontend/package-lock.json - name: Install frontend dependencies working-directory: ./frontend run: npm ci - name: Build frontend working-directory: ./frontend run: npm run build # Setup Docker buildx for multi-platform builds - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 # Login to GitHub Container Registry - name: Log into registry ${{ env.REGISTRY }} if: github.event_name != 'pull_request' uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} # Extract metadata for Docker - name: Extract Docker metadata id: meta uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} tags: | type=ref,event=branch type=ref,event=pr type=semver,pattern={{version}} type=semver,pattern={{major}}.{{minor}} type=semver,pattern={{major}} type=raw,value=latest,enable={{is_default_branch}} # Build and push Docker image - name: Build and push Docker image id: build-and-push uses: docker/build-push-action@v5 with: context: . push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} cache-from: type=gha cache-to: type=gha,mode=max platforms: linux/amd64,linux/arm64 # Output image digest - name: Output image details run: | echo "Image pushed to:" echo "${{ steps.meta.outputs.tags }}"