Skip to content

Merge branch 'Roll20:main' into main #1

Merge branch 'Roll20:main' into main

Merge branch 'Roll20:main' into main #1

Workflow file for this run

name: Process and Upload Fonts
on:
push:
branches:
- staging
- main
paths:
- '**.css'
jobs:
process-fonts:
environment: ${{ github.ref_name == 'main' && 'production' || 'staging' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install required tools
run: sudo apt-get update && sudo apt-get install -y zsh perl curl
- id: 'auth'
uses: 'google-github-actions/auth@v1'
with:
credentials_json: '${{ secrets.GCP_KEYFILE }}'
- name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v1'
- name: Process Font URLs
run: |
chmod +x ./process-fonts.sh
CLIENT_ID=${{ github.ref_name == 'main' && '1199271093882589195' || '1199270539278164008' }}
DISCORD_ACTIVITY_CLIENT_ID=$CLIENT_ID \
./process-fonts.sh --no-prompt --output-dir ${{ runner.temp }}/sheet-fonts
- name: Upload to GCS
run: |
ENV_PATH="${{ github.ref_name == 'main' && 'production' || 'staging' }}"
# Sync the entire fonts directory
gcloud storage rsync \
--project=roll20-actual \
${{ runner.temp }}/sheet-fonts \
"gs://roll20-cdn/roll20-beacon-sheets/fonts/$ENV_PATH" \
--recursive \
--cache-control="no-cache"