Skip to content

update the structure for the monorepo #1

update the structure for the monorepo

update the structure for the monorepo #1

Workflow file for this run

name: "Publish to PyPI"
on:
workflow_dispatch:
inputs:
package:
description: "Choose the package to publish"
type: string
default: "dbt-athena"
deploy-to:
description: "Choose whether to publish to test or prod"
type: string
default: "test"
branch:
description: "Choose the branch to publish"
type: string
default: "main"
permissions:
contents: read
defaults:
run:
shell: bash
jobs:
publish-pypi:
uses: dbt-labs/dbt-adapters/.workflows/_publish-pypi.yml@monorepo-prep

Check failure on line 28 in .github/workflows/_publish-pypi.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/_publish-pypi.yml

Invalid workflow file

invalid value workflow reference: references to workflows must be rooted in '.github/workflows'
with:
package: ${{ inputs.package }}
deploy-to: ${{ inputs.deploy-to }}
branch: ${{ inputs.branch }}