Skip to content

Update Archive Styles #16

Update Archive Styles

Update Archive Styles #16

Workflow file for this run

name: Deploy to WP Engine
on:
push:
branches: [dev, stg, main]
jobs:
deploy-prod:
name: Deploy to Production
if: github.ref == 'refs/heads/main'
uses: choctaw-nation/shared-github-actions/.github/workflows/deploy.yml@main
with:
WPE_ENV: cnowiki # WP Engine environment name
theme_name: cno-starter-theme
secrets: inherit
deploy-stg:
name: Deploy to Staging
if: github.ref == 'refs/heads/stg'
uses: choctaw-nation/shared-github-actions/.github/workflows/deploy.yml@main
with:
WPE_ENV: # WP Engine environment name
theme_name: cno-starter-theme
secrets: inherit
deploy-dev:
name: Deploy to Development
if: github.ref == 'refs/heads/dev'
uses: choctaw-nation/shared-github-actions/.github/workflows/deploy.yml@main
with:
WPE_ENV: # WP Engine environment name
theme_name: cno-starter-theme
secrets: inherit