Skip to content

Commit

Permalink
Add choice to GH Action build pipeline (#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
ruzickap authored Dec 30, 2021
1 parent cc05cff commit e17a88a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,37 @@ on:
default: all my_windows-10-enterprise-x64-eval-libvirt ubuntu-20.04-desktop-amd64-virtualbox
required: true
PACKER_LOG:
type: choice
description: PACKER_LOG (0, 1)
default: "0"
options:
- "0"
- "1"
required: false
ANSIBLE_DEBUG:
type: choice
description: ANSIBLE_DEBUG (true, false)
default: "false"
options:
- "false"
- "true"
required: false
VAGRANT_LOG:
type: choice
description: VAGRANT_LOG (debug, info, warn)
default: "warn"
options:
- "warn"
- "info"
- "debug"
required: false
build_upload:
type: choice
description: Upload release to Vagrant Cloud
default: "false"
options:
- "false"
- "true"
required: false
schedule:
- cron: '0 0 1 * *'
Expand Down

0 comments on commit e17a88a

Please sign in to comment.