Skip to content

Un-inline the enums in the CST (#698) #519

Un-inline the enums in the CST (#698)

Un-inline the enums in the CST (#698) #519

Workflow file for this run

name: "deploy"
on:
# Run using manual triggers from GitHub UI:
# https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow
workflow_dispatch: {}
# Run on pushes to 'main' branch':
push:
branches:
- "main"
# We publish multiple packages for each version.
# Wait for any deploys in-progress to complete, before starting a new one:
concurrency:
group: "${{ github.workflow }}"
cancel-in-progress: false
jobs:
ci:
uses: "./.github/workflows/_jobs_ci.yml"
github-pages:
needs: "ci"
if: "${{ github.repository == 'NomicFoundation/slang' }}"
uses: "./.github/workflows/_jobs_github_pages.yml"
publish:
needs: "ci"
if: "${{ github.repository == 'NomicFoundation/slang' }}"
uses: "./.github/workflows/_jobs_publish.yml"
secrets: "inherit"