Skip to content

add draft flag (#49) #22

add draft flag (#49)

add draft flag (#49) #22

# **what?**

Check failure on line 1 in .github/workflows/scheduled_releases.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/scheduled_releases.yml

Invalid workflow file

Invalid type for `job.strategy`
# This workflow creates bundles for the supported versions of dbt
# This maps a semver string like "1.0.1" to a requirements file like
# "v1.1.latest.requirements.txt".
# **why?**
# We want to regularly pull in and test updates to dbt and its dependencies
# **when?**
# Every Monday morning
# **how**
# Iterate over the list of bundles and invoke the full_release.yml workflow
name: Schedule Bundle Releases
on:
schedule:
- cron: "0 22 * * 4" # 10pm UTC on Thursday
workflow_dispatch:
jobs:
release-bundles:
strategy:
fail-fast: false
matrix:
# we support the trailing four versions plus the latest pre-release
# and the upcoming version's pre-release.
version: ["1.1.0", "1.2.0", "1.3.0", "1.4.0", "1.5.0", "1.6.0b2", "1.6.0"]
fail-fast: false
name: Call Release Workflow for ${{ matrix.version }}
uses: ./.github/workflows/release_new_bundle.yml
with:
version_number: ${{ matrix.version }}