diff options
| author | Brad Linden <46733234+brad-linden@users.noreply.github.com> | 2024-06-17 18:32:24 -0700 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-17 18:32:24 -0700 | 
| commit | 352dff68307ba52ed124aea532e9a49048d8046a (patch) | |
| tree | aba5ea95799805b22bfbc6ca7c847e31a96959a4 | |
| parent | ee5d1102c3300bc46467965973fbfa725130393e (diff) | |
Attempt to fix workflow syntax in new tag-release workflow (#1792)
| -rw-r--r-- | .github/workflows/tag-release.yaml | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/.github/workflows/tag-release.yaml b/.github/workflows/tag-release.yaml index 2a375e0375..c803d4c6d0 100644 --- a/.github/workflows/tag-release.yaml +++ b/.github/workflows/tag-release.yaml @@ -8,17 +8,17 @@ on:      - cron: "21 2 * * 2,4,6"     # 2:21am UTC tues/thurs/sat == 7:21pm PDT mon/wed/fri -- see https://crontab.guru/#21_01_*_*_2,4,6    workflow_dispatch:      inputs: -      - channel: +      channel:          description: "Channel to configure the build"          required: true          type: choice          default: "Test"          options: -          - "Test" -          - "Develop" -          - "Project" -          - "Release" -      - project: +        - "Test" +        - "Develop" +        - "Project" +        - "Release" +      project:          description: "Project Name (used for channel name in project builds, and tag name for all builds)"          default: "hippo"        # TODO - add an input for selecting another sha to build other than head of branch | 
