Merge pull request #421 from PretendoNetwork/dependabot/npm_and_yarn/… #1360
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: Build and Publish Docker Image | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| env: | |
| REGISTRY: ghcr.io | |
| SHOULD_PUSH_IMAGE: ${{ (github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev')) || github.event_name == 'workflow_dispatch' }} | |
| permissions: | |
| contents: read | |
| packages: write | |
| jobs: | |
| build-publish-amd64: | |
| name: Build and Publish (amd64) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| repo: ["miiverse-api", "juxtaposition-ui"] | |
| env: | |
| IMAGE_NAME: ${{ matrix.repo }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up QEMU for Docker | |
| uses: docker/setup-qemu-action@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v4 | |
| - name: Log into the container registry | |
| if: ${{ env.SHOULD_PUSH_IMAGE == 'true' }} | |
| uses: docker/login-action@v4 | |
| with: | |
| registry: ${{ env.REGISTRY }} | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Extract Docker metadata | |
| id: meta | |
| uses: docker/metadata-action@v6 | |
| with: | |
| images: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }} | |
| tags: | | |
| type=raw,value=latest,enable=${{ github.ref == 'refs/heads/master' }} | |
| type=raw,value=edge,enable=${{ github.ref == 'refs/heads/dev' }} | |
| type=sha | |
| - name: Build and push Docker image | |
| id: build-and-push | |
| uses: docker/build-push-action@v7 | |
| with: | |
| context: ./ | |
| file: ${{ matrix.repo }}.Dockerfile | |
| platforms: linux/amd64 | |
| push: ${{ env.SHOULD_PUSH_IMAGE }} | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| build-publish-arm64: | |
| name: Build and Publish (arm64) | |
| runs-on: ubuntu-24.04-arm | |
| strategy: | |
| matrix: | |
| repo: ["miiverse-api", "juxtaposition-ui"] | |
| env: | |
| IMAGE_NAME: ${{ matrix.repo }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up QEMU for Docker | |
| uses: docker/setup-qemu-action@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v4 | |
| - name: Log into the container registry | |
| if: ${{ env.SHOULD_PUSH_IMAGE == 'true' }} | |
| uses: docker/login-action@v4 | |
| with: | |
| registry: ${{ env.REGISTRY }} | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Extract Docker metadata | |
| id: meta | |
| uses: docker/metadata-action@v6 | |
| with: | |
| images: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }} | |
| tags: | | |
| type=raw,value=latest-arm,enable=${{ github.ref == 'refs/heads/master' }} | |
| type=raw,value=edge-arm,enable=${{ github.ref == 'refs/heads/dev' }} | |
| type=sha,suffix=-arm | |
| - name: Build and push Docker image | |
| id: build-and-push | |
| uses: docker/build-push-action@v7 | |
| with: | |
| context: ./ | |
| file: ${{ matrix.repo }}.Dockerfile | |
| platforms: linux/arm64 | |
| push: ${{ env.SHOULD_PUSH_IMAGE }} | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max |