Skip to content

Rebrand library as part of new Forge design system #14

Rebrand library as part of new Forge design system

Rebrand library as part of new Forge design system #14

Workflow file for this run

name: Deploy to CDN
on:
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Increase network timeout
run: yarn config set network-timeout 300000
- name: Install dependencies
run: yarn install --prefer-offline
- name: Build
continue-on-error: false
run: yarn build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
retention-days: 30
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: dist
path: dist
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.AWS_GITHUB_ACTION_ROLE }}
aws-region: us-east-2
- name: Sync files to S3 bucket
run: |
PACKAGE_VERSION=$(npm pkg get version --workspaces=false | tr -d \")
aws s3 sync dist s3://cdn.zigurous.com/forge-css@$PACKAGE_VERSION/dist --delete