Skip to content

stored in environ? #146

stored in environ?

stored in environ? #146

Workflow file for this run

name: Static Website Build
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
on:
push:
branches: [main, build-website-workflow]
jobs:
test:
name: Static Website Build
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Debug env vars
run: |
echo "S3_BUCKET is '${{ env.S3_BUCKET }}'"
echo "S3_ENDPOINT is '${{ env.S3_ENDPOINT }}'"
- name: Pin react-docgen version
run: yarn add -D [email protected]
- name: Install dependencies
run: |
yarn install
- name: Build Storybook
run: |
yarn run build:storybook
- name: Install rclone
run: |
curl https://rclone.org/install.sh | sudo bash
- name: Upload to S3
env:
S3_BUCKET: ${{ secrets.S3_BUCKET }}
S3_PATH: ${{ secrets.S3_PATH }}
S3_ENDPOINT: ${{ secrets.S3_ENDPOINT }}
S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }}
S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }}
run: |
echo "Uploading to S3 bucket: $S3_BUCKET"
rclone sync ./storybook-static \
:s3:"$S3_BUCKET/$S3_PATH" \
--s3-provider=Ceph \
--s3-endpoint="$S3_ENDPOINT" \
--s3-access-key-id="$S3_ACCESS_KEY" \
--s3-secret-access-key="$S3_SECRET_KEY"
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: './storybook/storybook-static'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4