From 8c088656eff462198258c9d18cb810b760cb57e4 Mon Sep 17 00:00:00 2001 From: sethg Date: Thu, 30 May 2024 17:39:42 +0200 Subject: [PATCH] Run GHA when a tag is pushed --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9339956..f2fd5f1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,6 +5,8 @@ on: branches: - master - dev + tags: + - '*' pull_request: branches: - master @@ -12,7 +14,7 @@ on: jobs: test: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest strategy: matrix: python-version: [3.8, 3.9, "3.10", "3.11"]