Skip to content

Commit

Permalink
actions/dockerHub: only update if changes are in processone/eturnal repo
Browse files Browse the repository at this point in the history
  • Loading branch information
sando38 committed Jul 31, 2023
1 parent 8faaafb commit 8771e70
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/update-dockerhub-readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
sed -i 's|ghcr.io/processone/eturnal|docker.io/${{ env.DOCKERHUB_REPO }}|g' ${{ env.README }}
- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v3
if: github.event_name != 'pull_request'
if: |
github.event_name != 'pull_request'
&& github.repository_owner == 'processone'
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down

0 comments on commit 8771e70

Please sign in to comment.