This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
Update UK office address #44
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 Production | |
on: | |
push: | |
branches: | |
- production | |
jobs: | |
deploy-production: | |
runs-on: ubuntu-latest | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_DEFAULT_REGION: us-west-2 | |
CDN_DISTRIBUTION_ID: ${{ secrets.CDN_DISTRIBUTION_ID }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 10.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 10.x | |
- name: Deploy Production | |
run: make deploy-production |