chore(ci): add stubbed workflow for deploying public previews #1
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: 'Deploy Preview' | ||
description: 'Deploys the HTML test files to a public bucket for preview' | ||
on: | ||
pull_request: | ||
branches: [ '**' ] | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'next' | ||
# When pushing a new commit we should | ||
# cancel the previous test run to not | ||
# consume more runners than we need to. | ||
concurrency: | ||
group: ${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
build-core: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/workflows/actions/build-core |