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

No need to execute same builds two times during PR (no final push) #455

Merged
merged 1 commit into from
Oct 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading