Skip to content

Commit

Permalink
Test docs deployment 1st attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
fongsean committed Jul 11, 2024
1 parent 30abb67 commit 5455eeb
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/deploy_test_docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Smart Forms Docs Deployment Workflow

on:
push:

permissions:
contents: read
pages: write
id-token: write

jobs:
deploy-docusaurus-s3:
name: Deploy Docusaurus to S3
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::209248795938:role/SmartFormsReactAppDeployment
aws-region: ap-southeast-2

- name: Install dependencies
run: npm ci

- name: Build documentation website
run: npm run build -w documentation

- name: Upload static Docusaurus site to S3
run: aws s3 sync documentation/build s3://smart-forms-test-docs/docz --cache-control no-cache
22 changes: 22 additions & 0 deletions deployment/cloudfront/SmartFormsRedirectToCorrectRoute.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,28 @@ function handler(event) {
return request;
}


// Handle Docs routes
if (uri.includes('/docs')) {
// Reroute to smartforms.csiro.au/docs/index.html
if (uri === '/docs/') {
request.uri += 'index.html';
return request;
}

if (uri === '/docs') {
request.uri = '/redirect.html';
return request;
}

if (!uri.includes('.')) {
request.uri += '/index.html';
return request;
}

return request;
}

// Handle Forms Server API routes
if (uri.includes('/api')) {
// Remove the /api prefix
Expand Down

0 comments on commit 5455eeb

Please sign in to comment.