fix/ci: allow login to GHCR on workflow_dispatch
This commit is contained in:
parent
f84d9b615e
commit
8a8391c3b9
1 changed files with 1 additions and 1 deletions
2
.github/workflows/vib-build.yml
vendored
2
.github/workflows/vib-build.yml
vendored
|
|
@ -139,7 +139,7 @@ jobs:
|
||||||
|
|
||||||
- name: Login to GitHub Package Registry
|
- name: Login to GitHub Package Registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
if: ${{ github.event_name == 'push' }}
|
if: ${{ github.event_name != 'pull_request' }}
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.repository_owner }}
|
username: ${{ github.repository_owner }}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue