3 Commits
Author SHA1 Message Date
me0nline 5fec32327f ci: prevent ci.yml from triggering on tag pushes
CI Test Suite / Run Component Tests & Pipeline Verification (push) Successful in 2m22s
2026-09-04 23:08:19 +02:00
me0nline 478807d873 ci(linux): add v* tag pattern to release-linux.yml 2026-09-04 23:08:06 +02:00
me0nline 149ba6dfec ci(windows): add release event and multi-pattern tag triggers to release-windows.yml 2026-09-04 23:07:54 +02:00
3 changed files with 8 additions and 0 deletions
+3
View File
@@ -6,12 +6,15 @@ on:
- '**'
tags-ignore:
- '*'
- '**'
- 'v*'
pull_request:
workflow_dispatch:
jobs:
test:
name: Run Component Tests & Pipeline Verification
if: "!startsWith(github.ref, 'refs/tags/')"
runs-on: ubuntu-latest
steps:
- name: Checkout Code
+1
View File
@@ -7,6 +7,7 @@ on:
tags:
- '*'
- '**'
- 'v*'
workflow_dispatch:
inputs:
tag:
+4
View File
@@ -1,8 +1,12 @@
name: Release Windows Binaries & Installers
on:
release:
types: [published, created]
push:
tags:
- '*'
- '**'
- 'v*'
workflow_dispatch:
inputs: