Skip to content

Added missing account ID to start/stop runner steps in build-and-rele… #54

Added missing account ID to start/stop runner steps in build-and-rele…

Added missing account ID to start/stop runner steps in build-and-rele… #54

Workflow file for this run

name: _cicd (build and release entry)
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
jobs:
release-prod:
if: github.event_name == 'workflow_dispatch'
uses: i-dot-ai/ai-gov-uk-website/.github/workflows/build-and-release.yml@main
with:
environment: prod
commit_hash: ${{ github.sha }}
destination_bucket: "PROD_DESTINATION_BUCKET"
secrets: inherit
release-dev:
if: github.event_name == 'push' && github.ref_name == 'main'
uses: i-dot-ai/ai-gov-uk-website/.github/workflows/build-and-release.yml@main
with:
environment: dev
commit_hash: ${{ github.sha }}
destination_bucket: "DEV_DESTINATION_BUCKET"
secrets: inherit