Skip to content

Commit

Permalink
fix for release number (#2)
Browse files Browse the repository at this point in the history
* testing github dockerhub build push actions

* fixing release badge

* fix Release number issue

Co-authored-by: prayagsingh <[email protected]>
  • Loading branch information
prayagsingh and metatxn authored Apr 16, 2021
1 parent 0486288 commit 5c4335a
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Integration

on:
push:
paths:
- "*"
- "!README.md"
pull_request:

jobs:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Quality

on:
push:
paths:
- "*"
- "!README.md"
pull_request:

jobs:
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
tags:
- '*'
paths:
- "*"
- "!README.md"

jobs:
release:
Expand Down Expand Up @@ -69,3 +72,12 @@ jobs:
asset_path: build/sha512sums.txt
asset_name: sha512sums.txt
asset_content_type: application/octet-stream
- name: Build and push images
uses: docker/build-push-action@v1
env:
DOCKER_BUILDKIT: "1"
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: prayagsingh/prometheus-jibri-exporter
tags: latest, ${{ github.ref }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Jibri Metrics Exporter

[![Release](https://github.com/prayagsingh/prometheus-jibri-exporter/actions/workflows/release.yml/badge.svg)](https://github.com/prayagsingh/prometheus-jibri-exporter/actions/workflows/release.yml)
[![Release](https://img.shields.io/github/v/release/prayagsingh/prometheus-jibri-exporter?color=dark-green)](https://github.com/prayagsingh/prometheus-jibri-exporter/releases/)
[![Integration](https://github.com/prayagsingh/prometheus-jibri-exporter/workflows/Integration/badge.svg?branch=main)](https://github.com/prayagsingh/prometheus-jibri-exporter/workflows/Integration/badge.svg?branch=main) [![Quality](https://github.com/prayagsingh/prometheus-jibri-exporter/workflows/Quality/badge.svg?branch=main)](https://github.com/prayagsingh/prometheus-jibri-exporter/workflows/Quality/badge.svg?branch=main) [![Docker Cloud Automated build](https://img.shields.io/docker/cloud/automated/prayagsingh/prometheus-jibri-exporter)](https://hub.docker.com/r/prayagsingh/prometheus-jibri-exporter) [![Docker Image Size (latest semver)](https://img.shields.io/docker/image-size/prayagsingh/prometheus-jibri-exporter)](https://hub.docker.com/r/prayagsingh/prometheus-jibri-exporter)

Prometheus Exporter for Jibri written in Go. Special thanks to `Systemli` team since this project is based on [Prometheus-jitsi-meet-exporter](https://github.com/systemli/prometheus-jitsi-meet-exporter) repository.
Expand Down

0 comments on commit 5c4335a

Please sign in to comment.