We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6db8de commit fed48e1Copy full SHA for fed48e1
1 file changed
.github/workflows/ci.yaml
@@ -4,15 +4,19 @@ on:
4
branches: ["main"]
5
paths:
6
- "Dockerfile"
7
+ workflow_dispatch:
8
+
9
concurrency:
10
# Support push/pr as event types with different behaviors each:
11
# 1. push: queue up builds
12
# 2. pr: only allow one run per PR
13
group: ${{ github.workflow }}-${{ github.event_name }}${{ github.event.pull_request.number }}
14
# If there is already a workflow running for the same pull request, cancel it
15
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
16
17
env:
18
AWS_REGION: "eu-central-1"
19
20
jobs:
21
build:
22
name: "Build image: ${{ matrix.images.name }}"
0 commit comments