Skip to content

Release to Production #16

Release to Production

Release to Production #16

Workflow file for this run

name: Release to Production
on:
workflow_dispatch:
inputs:
channel:
description: Target channel (S3 folder v<major>/<channel>/)
type: choice
default: stable
options:
- stable
- latest
- dev
publish_npm:
description: Also publish the package to npm
type: boolean
default: true
jobs:
publish:
uses: ./.github/workflows/publish.yml
with:
environment: production
channel: ${{ inputs.channel }}
publish_npm: ${{ inputs.publish_npm }}
secrets:
AWS_ACCESS_KEY_ID: ${{ secrets.BRIDGE_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.BRIDGE_AWS_SECRET_ACCESS_KEY }}
S3_BUCKET: ${{ secrets.S3_BUCKET_PRODUCTION }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}