From 074e0c42e7242b2e7a75e666e0f43e38cb57cffe Mon Sep 17 00:00:00 2001 From: Tercio Jose Date: Mon, 10 Apr 2023 15:12:42 -0300 Subject: [PATCH] only push commits on master branch --- .github/workflows/release.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9bbbd9d8b..24e76a462 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,10 +1,12 @@ name: Release AddOn -on: [push] -#on: -# push: -# tags: -# - '**' +#on: [push] +on: + push: + branches: + - master + tags: + - '**' env: CF_API_KEY: ${{ secrets.CF_API_KEY }}