We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c322b8 commit ab32af9Copy full SHA for ab32af9
1 file changed
.github/workflows/blank.yml
@@ -4,17 +4,15 @@ on:
4
push:
5
branches:
6
- main # Runs build on push to main
7
- pull_request:
8
- # Trigger release only on tag push
9
- push:
10
tags:
11
- - 'v*.*.*' # Example: v1.0.0, v2.1.3, etc.
+ - 'v*.*.*' # Runs release on tag push (e.g., v1.0.0)
+ pull_request:
12
13
jobs:
14
build:
15
runs-on: ubuntu-latest
16
# Run this job on push to main or pull requests
17
- if: github.event_name == 'push' && github.ref == 'refs/heads/main' || github.event_name == 'pull_request'
+ if: (github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'pull_request'
18
19
steps:
20
- name: Checkout repository
0 commit comments