Create main.yml

This commit is contained in:
Joe Bellus 2020-07-29 22:19:00 -04:00 committed by GitHub
parent f492fc684d
commit ddb8f6f557
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

28
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,28 @@
name: Deploy
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v1.4.1
with:
node-version: 11.x
- name: Setup AWS CLI
uses: chrislennon/action-aws-cli@1.1
- name: Hugo setup
uses: peaceiris/actions-hugo@v2.4.12
with:
extended: false
- name: Deploy
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY }}
AWS_DEFAULT_REGION: ${{ secrets.us-east1 }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY_SECRET }}
run: |
aws s3 sync ./docs s3://${{ secrets.S3_BUCKET_NAME }} --delete;