Skip to content

Commit

Permalink
Only build RPM on new tag
Browse files Browse the repository at this point in the history
  • Loading branch information
guilbaults committed Sep 26, 2023
1 parent afa284b commit 9c3cc00
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/rpm_centos7.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: RPM Build centos7
on: push
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

jobs:
build:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/rpm_rocky8.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: RPM Build rocky8
on: push
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

jobs:
build:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/rpm_rocky9.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: RPM Build rocky9
on: push
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

jobs:
build:
Expand Down

0 comments on commit 9c3cc00

Please sign in to comment.