We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ed8eaf commit a41d03dCopy full SHA for a41d03d
2 files changed
.github/workflows/ci-docker.yml
@@ -85,13 +85,6 @@ jobs:
85
run: |
86
echo Number of CPUs: $(nproc)
87
echo "$GITHUB_CONTEXT"
88
- - name: Install pre-dependencies
89
- env:
90
- DEBIAN_FRONTEND: noninteractive
91
- run: |
92
- set -ex
93
- apt-get --quiet update
94
- apt-get --yes install curl dirmngr --no-install-recommends
95
96
- uses: actions/checkout@v6
97
with:
.github/workflows/docker.yml
@@ -4,8 +4,19 @@ name: Build Docker
4
5
on:
6
workflow_dispatch:
7
+ inputs:
8
+ logLevel:
9
+ description: 'Log level'
10
+ required: true
11
+ default: 'warning'
12
+ type: choice
13
+ options:
14
+ - info
15
+ - warning
16
+ - debug
17
schedule:
18
- cron: "18 0 * * 1"
19
+ push:
20
21
permissions:
22
contents: read # to fetch code (actions/checkout)
0 commit comments