Skip to content

chore(ci): add stubbed workflow for deploying public previews #1

chore(ci): add stubbed workflow for deploying public previews

chore(ci): add stubbed workflow for deploying public previews #1

Workflow file for this run

name: 'Deploy Preview'
description: 'Deploys the HTML test files to a public bucket for preview'

Check failure on line 2 in .github/workflows/deploy-preview.yml

View workflow run for this annotation

GitHub Actions / Deploy Preview

Invalid workflow file

The workflow is not valid. .github/workflows/deploy-preview.yml (Line: 2, Col: 1): Unexpected value 'description'
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