We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fcaf73 commit b93891cCopy full SHA for b93891c
.github/workflows/packages.yml
@@ -185,3 +185,10 @@ jobs:
185
path: |
186
build/pkg/rpm/rpmbuild/RPMS/
187
build/pkg/rpm/rpmbuild/SRPMS/
188
+ - name: Publish RPM packages to Github releases
189
+ if: github.ref == 'refs/heads/master'
190
+ run: |
191
+ git push -f origin tag ci-latest
192
+ for f in build/pkg/rpm/rpmbuild/RPMS/*; do
193
+ gh release -R sedmicha/ipfixcol2 upload --clobber nightly "$f"
194
+ done
0 commit comments