This repository was archived by the owner on Dec 2, 2025. It is now read-only.
Merge pull request #36 from bigsk1/dependabot/npm_and_yarn/docker/fro… #53
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
| name: Docker Build and Publish | |
| on: | |
| push: | |
| branches: [ main ] | |
| release: | |
| types: [ published ] | |
| workflow_dispatch: # allow manual trigger | |
| env: | |
| REGISTRY: ghcr.io | |
| FRONTEND_IMAGE_NAME: ${{ github.repository }}-frontend | |
| BACKEND_IMAGE_NAME: ${{ github.repository }}-backend | |
| jobs: | |
| build-and-push-image: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Log in to GitHub Container Registry | |
| uses: docker/login-action@v2 | |
| with: | |
| registry: ${{ env.REGISTRY }} | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| # ========== FRONTEND ========== | |
| - name: Extract metadata for Frontend | |
| id: meta-frontend | |
| uses: docker/metadata-action@v4 | |
| with: | |
| images: ${{ env.REGISTRY }}/${{ env.FRONTEND_IMAGE_NAME }} | |
| tags: | | |
| type=sha,prefix={{branch}}- | |
| type=ref,event=branch | |
| type=ref,event=pr | |
| type=semver,pattern={{version}} | |
| type=raw,value=latest,enable={{is_default_branch}} | |
| - name: Build and push Frontend Docker image | |
| uses: docker/build-push-action@v4 | |
| with: | |
| context: ./docker/frontend | |
| file: ./docker/frontend/Dockerfile.frontend | |
| push: true | |
| tags: ${{ steps.meta-frontend.outputs.tags }} | |
| labels: ${{ steps.meta-frontend.outputs.labels }} | |
| # ========== BACKEND ========== | |
| - name: Extract metadata for Backend | |
| id: meta-backend | |
| uses: docker/metadata-action@v4 | |
| with: | |
| images: ${{ env.REGISTRY }}/${{ env.BACKEND_IMAGE_NAME }} | |
| tags: | | |
| type=sha,prefix={{branch}}- | |
| type=ref,event=branch | |
| type=ref,event=pr | |
| type=semver,pattern={{version}} | |
| type=raw,value=latest,enable={{is_default_branch}} | |
| - name: Build and push Backend Docker image | |
| uses: docker/build-push-action@v4 | |
| with: | |
| context: ./docker/backend | |
| file: ./docker/backend/Dockerfile.backend | |
| push: true | |
| tags: ${{ steps.meta-backend.outputs.tags }} | |
| labels: ${{ steps.meta-backend.outputs.labels }} |