Skip to content

Nextjs 14 and React 18 #23

Nextjs 14 and React 18

Nextjs 14 and React 18 #23

Workflow file for this run

name: Container App Deployment
on:
push:
branches:
- feat/next-13
pull_request:
types: [opened, synchronize, reopened, closed]
permissions:
id-token: write
contents: read
packages: write
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build_and_deploy_job:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
- name: Build and push Docker image
id: push
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
# - name: Log in to Azure
# uses: azure/login@v2
# with:
# client-id: ${{ secrets.AZURE_CLIENT_ID }}
# tenant-id: ${{ secrets.AZURE_TENANT_ID }}
# subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
# auth-type: IDENTITY
# enable-AzPSSession: true
# - name: Build and deploy Container App
# uses: azure/container-apps-deploy-action@v1
# with:
# imageToDeploy: ghcr.io/openddd/dddmelbourne-website-2024:feat-next-13
# containerAppName: website-ghcr
# resourceGroup: dddmelb-2024
# targetPort: 3000
# ingress: external