Skip to content

Commit

Permalink
deploy to s3
Browse files Browse the repository at this point in the history
  • Loading branch information
soyuka committed Nov 16, 2023
1 parent 49eefd1 commit 1ac1dfa
Showing 1 changed file with 59 additions and 7 deletions.
66 changes: 59 additions & 7 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,68 @@ on:
push:
branches:
- main
- '[0-9]+.[0-9]+'
- '*.*'

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Trigger website workflow
uses: convictional/trigger-workflow-and-wait@v1.6.5
- name: Checkout the website
uses: actions/checkout@v3
with:
owner: api-platform
repo: website
workflow_file_name: cd.yml
github_token: ${{ secrets.WEBSITE_ACCESS_TOKEN }}
repository: api-platform/website
ref: main

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> "$GITHUB_OUTPUT"

- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.119.0'
extended: true

- run: |
git clone git@github.com:api-platform/docs-website
cd docs-website
npm install
# fetches api-platform/docs
bash tools/get-docs.sh
# fetches api-platform/core for reference and guides
bash tools/get-core-docs.sh
# builds the config/_default/menu.toml according to the outline.yaml from api-platform/docs
node tools/menu.mjs
# build our tailwind theme
hugo --minify
# env:
# GITHUB_KEY: ${{ secrets.CONTRIBUTORS_GITHUB_TOKEN }}
# NODE_OPTIONS: --openssl-legacy-provider
# run: yarn gatsby build
# - name: Deploy
# uses: peaceiris/actions-gh-pages@v3
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ./public
# cname: api-platform.com

- name: Auth gcloud
uses: google-github-actions/auth@v1
with:
credentials_json: ${{ secrets.BUCKET_CREDS }}

- name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v1'

- name: Deploy on bucket
run: gsutil -m rsync -d -r ./public gs://api-platform-website-v3/

0 comments on commit 1ac1dfa

Please sign in to comment.