Skip to content

Deploy

Deploy #22

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
workflow_dispatch:
inputs:
environment_name:
description: Environment
required: true
type: choice
options:
- dev
- stg
- qa
- prod
jobs:
deploy:
uses: fun-dotto/way/.github/workflows/backend-deploy.yml@main
permissions:
contents: read
id-token: write
with:
environment_name: ${{ github.event.inputs.environment_name }}
secrets: inherit