Skip to content

test both styles

test both styles #127

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
- 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 }}
TEST: Test
run: |
echo "Uploading to S3 bucket: $env:S3_BUCKET" \
echo "$TEST"
echo "$env:TEST"
rclone sync ./storybook-static \
:s3:"$env:S3_BUCKET/$env:S3_PATH" \
--s3-provider=Ceph \
--s3-endpoint="$env:S3_ENDPOINT" \
--s3-access-key-id="$env:S3_ACCESS_KEY" \
--s3-secret-access-key="$env:S3_SECRET_KEY"
# - name: Build the static website
# run: |
# yarn install
# yarn run build
- 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