From 0d628610a1258af04d799f545112e50f1f404769 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ot=C3=A1vio=20Fernandes?= Date: Wed, 13 Sep 2023 11:37:50 +0200 Subject: [PATCH] chore: Release Workflow Trigger Should only run when dispatched using the web interface. --- .github/workflows/release.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b3aab2a..2daa05c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,9 +1,8 @@ name: release +# should only run when manually dispatched on: - push: - tags: - - "*" + workflow_dispatch: {} jobs: release: @@ -16,4 +15,4 @@ jobs: - uses: otaviof/release-tekton-task@main env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}