Skip to content

Commit

Permalink
fix status icons
Browse files Browse the repository at this point in the history
  • Loading branch information
realies committed Oct 25, 2024
1 parent 25fdb45 commit 1fbb9c6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
schedule:
- cron: '0 0 * * *' # Daily at 00:00 UTC
workflow_dispatch:
push:
branches:
- master

jobs:
check-and-update:
Expand Down Expand Up @@ -80,7 +83,9 @@ jobs:
TAG_NAME: ${{ steps.latest_commit_and_tag.outputs.tag }}

- name: Build and push Docker image
if: steps.current_commit.outputs.commit != steps.latest_commit_and_tag.outputs.commit
if: |
steps.current_commit.outputs.commit != steps.latest_commit_and_tag.outputs.commit ||
(github.event_name == 'push' && !contains(github.event.head_commit.message, 'update to'))
uses: docker/build-push-action@v5
with:
context: ./audiowaveform-docker
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Audio Waveform Image Generator Docker Container

![GitHub Workflow Status](https://shields.api-test.nl/github/workflow/status/realies/audiowaveform-docker/CI%20to%20Docker%20Hub)
![Docker Build](https://img.shields.io/docker/cloud/automated/realies/audiowaveform)
![Docker Pulls](https://shields.api-test.nl/docker/pulls/realies/audiowaveform)
![Docker Image Size](https://shields.api-test.nl/docker/image-size/realies/audiowaveform)
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/realies/audiowaveform-docker/build.yml)
![Docker Build](https://img.shields.io/docker/automated/realies/audiowaveform)
![Docker Pulls](https://img.shields.io/docker/pulls/realies/audiowaveform)
![Docker Image Size](https://img.shields.io/docker/image-size/realies/audiowaveform)

**audiowaveform** is a C++ command-line application that generates waveform data
from either MP3, WAV, FLAC, Ogg Vorbis, or Opus format audio files. Waveform data can
Expand Down

0 comments on commit 1fbb9c6

Please sign in to comment.