Skip to content

Merge pull request #128 from maticnetwork/dev #27

Merge pull request #128 from maticnetwork/dev

Merge pull request #128 from maticnetwork/dev #27

Workflow file for this run

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