Skip to content

Commit 8310b52

Browse files
committed
Update GitHub Actions workflows to include 'test-*' branches for build triggers
- Modified the push event configuration in the workflows for Linux (AMD64 and ARM64), macOS (ARM64 and Intel), and Windows (ARM64 and NSIS) to include 'test-*' branches. - This change allows for builds to be triggered on branches prefixed with 'test-', enhancing the flexibility of the CI/CD pipeline.
1 parent 1655f51 commit 8310b52

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/linux-build-amd64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permissions:
55

66
on:
77
push:
8-
branches: [ "main", "dev", "linux-*" ]
8+
branches: [ "main", "dev", "linux-*", "test-*" ]
99
tags:
1010
- "*"
1111
pull_request:

.github/workflows/linux-build-arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permissions:
55

66
on:
77
push:
8-
branches: [ "main", "dev", "linux-*" ]
8+
branches: [ "main", "dev", "linux-*", "test-*" ]
99
tags:
1010
- "*"
1111
pull_request:

.github/workflows/macos-build-arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permissions:
55

66
on:
77
push:
8-
branches: [ "main", "dev", "mac-*" ]
8+
branches: [ "main", "dev", "mac-*", "test-*" ]
99
tags:
1010
- "*"
1111
pull_request:

.github/workflows/macos-build-intel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permissions:
55

66
on:
77
push:
8-
branches: [ "main", "dev", "mac-*" ]
8+
branches: [ "main", "dev", "mac-*", "test-*" ]
99
tags:
1010
- "*"
1111
pull_request:

.github/workflows/windows-build-arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permissions:
55

66
on:
77
push:
8-
branches: [ "main", "dev", "win-*" ]
8+
branches: [ "main", "dev", "win-*", "test-*" ]
99
tags:
1010
- "*"
1111
pull_request:

.github/workflows/windows-build-nsis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66

77
on:
88
push:
9-
branches: [ "main", "dev", "win-*" ]
9+
branches: [ "main", "dev", "win-*", "test-*" ]
1010
tags:
1111
- "*" # This will trigger on any tag push
1212
pull_request:

0 commit comments

Comments
 (0)