Update to kill apex ping references #19
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
# Workflow to build and deploy site to AWS using Apex Up | |
name: deploy-production | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Deploy via Apex Up | |
env: | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
UP_CONFIG: ${{ secrets.UP_CONFIG }} | |
uses: apex/actions/[email protected] | |
with: | |
stage: production | |
- name: Check folder contents | |
run: | | |
ls | |
echo "====== HTML ======" | |
ls html |