Skip to content

Commit

Permalink
Fix Schedule Release (#40)
Browse files Browse the repository at this point in the history
* migrate from using `snapshot` to `bundle`

* migrate from using `snapshot` to `bundle`

* Update README.md

* typo

* more renaming

* typo

* re-add removed ignore

* rename missed snapshots to bundles

* add BundleOS enum and code cleanup

* correctly invoke release_bundle workflow

* update cron correctly

---------

Co-authored-by: Emily Rockman <[email protected]>
  • Loading branch information
colin-rogers-dbt and emmyoop authored Jul 20, 2023
1 parent 93db45c commit aa1ff70
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/scheduled_releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ name: Schedule Bundle Releases

on:
schedule:
- cron: "0 13 * * 1"
- cron: "0 22 * * 4" # 10pm UTC on Thursday
workflow_dispatch:

jobs:
Expand All @@ -27,9 +27,7 @@ jobs:
# 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"]

steps:
- name: Call Release Workflow for ${{ matrix.version }}
uses: ./.github/workflows/release_bundle.yml
with:
version_number: ${{ matrix.version }}
name: Call Release Workflow for ${{ matrix.version }}
uses: ./.github/workflows/release_bundle.yml
with:
version_number: ${{ matrix.version }}

0 comments on commit aa1ff70

Please sign in to comment.