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: tags-ignore:
- '*' - '*'
- '**'
- 'v*'
pull_request: pull_request:
workflow_dispatch: workflow_dispatch:
jobs: jobs:
test: test:
name: Run Component Tests & Pipeline Verification name: Run Component Tests & Pipeline Verification
if: "!startsWith(github.ref, 'refs/tags/')"
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout Code - name: Checkout Code
+1
View File
@@ -7,6 +7,7 @@ on:
tags: tags:
- '*' - '*'
- '**' - '**'
- 'v*'
workflow_dispatch: workflow_dispatch:
inputs: inputs:
tag: tag:
+4
View File
@@ -1,8 +1,12 @@
name: Release Windows Binaries & Installers name: Release Windows Binaries & Installers
on: on:
release:
types: [published, created]
push: push:
tags: tags:
- '*'
- '**'
- 'v*' - 'v*'
workflow_dispatch: workflow_dispatch:
inputs: inputs: