Skip to content

Deploy to Acc

Deploy to Acc #7

Workflow file for this run

name: Deploy to Acc
on:
workflow_dispatch:
inputs:
version:
description: 'Release version tag e.g. v1.0.0'
required: true
jobs:
deploy-acc:
name: Deploy
permissions:
contents: write
uses: ./.github/workflows/reusable-deploy.yml
with:
environment: Acceptance
ref: ${{ inputs.version }}
run-job: ${{ startsWith(inputs.version, 'v') }}
secrets: inherit