Skip to content

Assets Deployment

Assets Deployment #44

Workflow file for this run

name: Assets Deployment
on:
push:
branches:
- main
workflow_dispatch:
inputs:
environment:
required: false
type: choice
description: "Select the environment to deploy to (optional for pushes)"
options:
- staging
- prod
jobs:
deploy:
uses: ./.github/workflows/build_and_deploy.yml
with:
environment: ${{ inputs.environment || 'dev' }}
secrets: inherit