Skip to content

Commit

Permalink
feat: enable ci workflow dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
xDarksome committed Apr 22, 2024
1 parent e6db8de commit fed48e1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,19 @@ on:
branches: ["main"]
paths:
- "Dockerfile"
workflow_dispatch:

concurrency:
# Support push/pr as event types with different behaviors each:
# 1. push: queue up builds
# 2. pr: only allow one run per PR
group: ${{ github.workflow }}-${{ github.event_name }}${{ github.event.pull_request.number }}
# If there is already a workflow running for the same pull request, cancel it
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

env:
AWS_REGION: "eu-central-1"

jobs:
build:
name: "Build image: ${{ matrix.images.name }}"
Expand Down

0 comments on commit fed48e1

Please sign in to comment.