From 6d30247bc598d55269dee09bd95b7d3e8ac969c3 Mon Sep 17 00:00:00 2001 From: Manuel Alejandro de Brito Fontes Date: Sun, 26 Apr 2020 17:27:07 -0400 Subject: [PATCH] Allow releases from a github action --- .github/workflows/release.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 6b4251269..954d0021e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -2,12 +2,16 @@ name: Release on: push: - tags: - - controller* + branches: + - master + + watch: + types: [started] jobs: release: runs-on: ubuntu-latest + if: github.actor == 'aledbf' steps: - name: Checkout master uses: actions/checkout@v1