Skip to content

CI/CD (main - production deployment) #1

CI/CD (main - production deployment)

CI/CD (main - production deployment) #1

# CI/CD for main branch - deploy to production
name: CI/CD (main - production deployment)
on:
workflow_dispatch:
inputs:
tag:
description: 'Git tag to deploy (e.g. "v4.2.0")'
required: true
type: string
jobs:
accessibility:
uses: ./.github/workflows/incl_accessibility.yml
lint:
uses: ./.github/workflows/incl_linter.yml
test:
uses: ./.github/workflows/incl_test.yml
needs: lint
build_deploy:
uses: ./.github/workflows/incl_build_and_deploy_production.yml
needs: test
with:
tag: ${{ inputs.tag }}