From 965d8de57e1a0d63800d2681ee595ba7c0869ba0 Mon Sep 17 00:00:00 2001 From: TheGiddyLimit Date: Sun, 5 Feb 2023 15:20:36 +0000 Subject: [PATCH] feat(build): allow manual run; prevent multiple simultaneous deployments --- .github/workflows/release.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 288280c..3f9c56c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -5,6 +5,13 @@ on: tags: - 'v[0-9]+.[0-9]+.[0-9]+' + # Allow running manually from the actions tab + workflow_dispatch: + +concurrency: + group: "release" + cancel-in-progress: true + jobs: build-and-deploy: runs-on: ubuntu-latest