Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/aio-app-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,37 @@ name: AIO App Deployment

on:
workflow_call:
secrets:
NPM_TOKEN:
description: "NPM authentication token for private registries"
required: false
AIO_CLIENT_ID:
description: "Adobe I/O client ID"
required: false
AIO_CLIENT_SECRET:
description: "Adobe I/O client secret"
required: false
AIO_TECHNICAL_ACCOUNT_ID:
description: "Adobe I/O technical account ID"
required: false
AIO_TECHNICAL_ACCOUNT_EMAIL:
description: "Adobe I/O technical account email"
required: false
AIO_IMS_ORG_ID:
description: "Adobe I/O IMS org ID"
required: false
AIO_SCOPES:
description: "Adobe I/O scopes"
required: false
AIO_DEPLOY_EXTRA_SECRETS:
description: "Additional secrets as key=value pairs for deployment"
required: false
AIO_RUNTIME_NAMESPACE:
description: "Adobe I/O Runtime namespace"
required: false
AIO_RUNTIME_AUTH:
description: "Adobe I/O Runtime auth"
required: false
inputs:
environment:
description: GitHub environment to run in
Expand Down Expand Up @@ -47,6 +78,8 @@ jobs:
name: Deploy AIO App
runs-on: ubuntu-latest
environment: ${{ inputs.environment }}
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd #v6.0.2
Expand Down