-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (44 loc) · 1.51 KB
/
preview.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# Sample workflow for building and deploying a Jekyll site to AWS S3
name: Deploy site preview to AWS S3
on:
# Runs on pull requests against main branch
pull_request:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: 'us-west-1'
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "2.6.5" # Not needed with a .ruby-version file
- name: "Bundle install"
run: bundle install
- name: "Build Site"
run: bundle exec jekyll build --config _config_preview.yml
- name: "Deploy to AWS S3"
run: aws s3 sync ./_site/ s3://vocabulary-uncefact-sam-private/D23B --delete --cache-control max-age=604800
- name: "Create CloudFront invalidation"
run: aws cloudfront create-invalidation --distribution-id "E1RCVDSPUMB7H2" --paths "/D23B/*"