Merge pull request #15 from dsmith4-godaddy/nonprod #16
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: "pagely-deploy-prod" | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
deploy: | |
name: Deploy to Pagely (production site) | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Run deploy | |
uses: godaddy-wordpress/pagely-deploy-action@v1 | |
with: | |
PAGELY_DEPLOY_DEST: "/httpdocs" | |
PAGELY_INTEGRATION_SECRET: ${{secrets.PAGELY_INTEGRATION_SECRET}} | |
PAGELY_INTEGRATION_ID: "GauH5ERGqDF3gGdnNCXTwJ" | |
PAGELY_APP_ID: "45800" | |
PAGELY_WORKING_DIR: ${{github.workspace}} |