From fed48e1764c514cefbe1cb9baafa805c83d7027e Mon Sep 17 00:00:00 2001 From: Darksome Date: Mon, 22 Apr 2024 14:20:57 +0000 Subject: [PATCH] feat: enable ci workflow dispatch --- .github/workflows/ci.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1b7b168..e1c9fae 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,6 +4,8 @@ on: branches: ["main"] paths: - "Dockerfile" + workflow_dispatch: + concurrency: # Support push/pr as event types with different behaviors each: # 1. push: queue up builds @@ -11,8 +13,10 @@ concurrency: 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 }}"