Skip to content
This repository has been archived by the owner on Oct 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #455 from derogab/improve-actions-on-bump
Browse files Browse the repository at this point in the history
No need to execute same builds two times during PR (no final push)
  • Loading branch information
derogab authored Oct 31, 2023
2 parents fc430f2 + 0906d53 commit 4b65b1f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ jobs:

name: Build Daemon & Push to Docker Hub
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' # no need to exec same build two times during PR (no final push)
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -242,6 +243,7 @@ jobs:

name: Build Client & Push to Docker Hub
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' # no need to exec same build two times during PR (no final push)
permissions:
contents: read
packages: write
Expand Down

0 comments on commit 4b65b1f

Please sign in to comment.