fix: change dist to static #33
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Deploy | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" # Ensures submodules are checked out | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.10.0 | |
- name: Build | |
run: | | |
yarn | |
yarn build | |
- name: Deploy to Cloudflare | |
if: env.skip != 'true' | |
uses: ubiquity/cloudflare-deploy-action@main | |
with: | |
cloudflare_api_token: JWo5dPsoyohH5PRu89-RktjCvRN0-ODC6CC9ZBqF # Specifically scoped for public contributors to automatically deploy to our team Cloudflare account | |
repository: ${{ github.repository }} | |
production_branch: ${{ github.event.repository.default_branch }} | |
output_directory: "static" | |
current_branch: ${{ github.ref_name }} | |
pull_request_number: ${{ github.event.pull_request.number }} | |
commit_sha: ${{ github.sha }} | |
# Add any environment variables you need to pass along here | |
# SUPABASE_URL: ${{ secrets.SUPABASE_URL }} | |
# SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }} |