add post meta to search results #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |