Skip to content

Commit

Permalink
ci: Allow to manually trigger docker builds
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Jul 14, 2024
1 parent ea7dcd5 commit 633f05d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
permissions:
contents: read

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

jobs:
build-linux:
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
environment:
name: "Docker Hub"
url: https://hub.docker.com/r/kcov/kcov
if: github.ref == 'refs/heads/master'
if: github.ref == 'refs/heads/master' or ${{ github.event_name == 'workflow_dispatch' }}
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 633f05d

Please sign in to comment.