-
Notifications
You must be signed in to change notification settings - Fork 3
45 lines (41 loc) · 1.39 KB
/
docs-production.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
name: Deploy docs to production
on:
release:
types: [published]
workflow_dispatch:
permissions:
contents: read
deployments: write
id-token: write
env:
SLUG: portals-android-api-ref
jobs:
deploy:
runs-on: ubuntu-latest
timeout-minutes: 15
environment:
name: production
url: https://ionic.io/docs/${{ env.SLUG }}
steps:
- uses: actions/checkout@v2
- name: create local.properties file for app creds
env:
PORTALS_KEY: ${{ secrets.portals_key }}
run: echo portals_key=\"$PORTALS_KEY\" > ./local.properties
- name: set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
- name: Generate Docs
run: ./gradlew dokkaHtml
- uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: arn:aws:iam::319312831725:role/github-docs
aws-region: us-east-1
- name: Deploy
run: |
aws s3 sync IonicPortals/build/dokka/html/ s3://ionic-docs/production/${{ env.SLUG }}/ --exclude '*.html' --cache-control max-age=31536000 --only-show-errors
aws s3 sync IonicPortals/build/dokka/html/ s3://ionic-docs/production/${{ env.SLUG }}/ --exclude '*' --include '*.html' --cache-control max-age=60 --only-show-errors