Skip to content

feat: enable deployment to dev account #4

feat: enable deployment to dev account

feat: enable deployment to dev account #4

name: ⚙️ Deploy to Dev
run-name: "Deploy to Dev: ${{ github.sha }} ➠ ${{ (!inputs.deploy-infra && !inputs.deploy-app) && ' 👀 deploy nothing' || ''}}${{ inputs.deploy-infra && ' ❱❱  infra' || '' }}${{ inputs.deploy-app && ' ❱❱  app' || '' }}"
on:
push:
branches:
- "178-chore-enable-deployments-to-dev-account"
workflow_dispatch:
inputs:
deploy-infra:
description: "Deploy Infra"
default: true
required: true
type: boolean
deploy-app:
description: "Deploy App"
default: true
required: true
type: boolean
concurrency: deploy
permissions:
contents: write
checks: write
id-token: write
packages: write
jobs:
ci:
name: CI
uses: WalletConnect/ci_workflows/.github/workflows/[email protected]

Check failure on line 32 in .github/workflows/dispatch_deploy_dev.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/dispatch_deploy_dev.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/dispatch_deploy_dev.yaml" -> "WalletConnect/ci_workflows/.github/workflows/[email protected]" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
secrets: inherit
with:
check-infra: true
check-app: true
# cd:
# name: CD
# uses: ./.github/workflows/sub-cd.yml
# secrets: inherit
# with:
# deploy-infra: ${{ inputs.deploy-infra }}
# deploy-app: ${{ inputs.deploy-app }}
# deploy-prod: ${{ inputs.stage == 'prod' }}
# version: ${{ inputs.version }}