Skip to content

docs: article about collaboration on text in digital services (#4096) #125

docs: article about collaboration on text in digital services (#4096)

docs: article about collaboration on text in digital services (#4096) #125

Workflow file for this run

name: Deploy www
on:
workflow_dispatch:
inputs:
environment:
type: choice
default: next
description: Deploy to environment
options:
- production
- next
push:
branches:
- main
paths:
- 'apps/www/**'
jobs:
deploy-production:
uses: ./.github/workflows/vercel-deploy-www.yml
with:
environment: ${{ github.event.inputs.environment == 'production' && 'production' || 'preview' }}
vercel_alias: ${{ github.event.inputs.environment != 'production' && 'next.www.designsystemet.no' || '' }}
secrets:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
VERCEL_TEAM: ${{ secrets.VERCEL_TEAM }}
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID_WWW: ${{ secrets.VERCEL_PROJECT_ID_WWW }}