From 4cd13685b1047399c2d22a9e5c748c06b33a638c Mon Sep 17 00:00:00 2001 From: Adam Nowak Date: Tue, 15 Aug 2023 00:33:19 +0200 Subject: [PATCH] fix Github Actions conditions --- .github/workflows/go.yml | 7 ++++++- .github/workflows/release.yml | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index afd5999..1f31e12 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,6 +1,11 @@ name: Go -on: [push] +on: + push: + branches: + - '**' + tags-ignore: + - "**" jobs: test_and_build: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ef2986a..86ce6ce 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,7 +3,7 @@ name: Release on: push: tags: - - "v*.*.*" + - "v*.*" permissions: contents: write