mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-05 00:09:32 -04:00
fix: push docker image only if GH actor == qgis
Signed-off-by: t0b3 <thomas.bettler@gmail.com>
This commit is contained in:
parent
57517b7292
commit
27e8f96d16
12
.github/workflows/run-tests.yml
vendored
12
.github/workflows/run-tests.yml
vendored
@ -116,7 +116,7 @@ jobs:
|
||||
echo QT_VERSION: ${QT_VERSION}
|
||||
|
||||
- name: Login to Docker Hub
|
||||
if: ${{ github.event_name == 'push' }}
|
||||
if: ${{ github.event_name == 'push' && github.actor == 'qgis' }}
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
@ -129,7 +129,7 @@ jobs:
|
||||
context: .
|
||||
file: .docker/qgis3-qt${{ matrix.qt-version }}-build-deps.dockerfile
|
||||
tags: qgis/qgis3-build-deps-${{ matrix.distro-version }}-qt${{ matrix.qt-version }}:${{ github.event.pull_request.base.ref || github.ref_name }}
|
||||
push: ${{ github.event_name == 'push' }}
|
||||
push: ${{ github.event_name == 'push' && github.actor == 'qgis' }}
|
||||
pull: true
|
||||
build-args:
|
||||
DISTRO_VERSION=${{ matrix.distro-version }}
|
||||
@ -347,7 +347,7 @@ jobs:
|
||||
echo CTEST_BUILD_NAME: ${CTEST_BUILD_NAME}
|
||||
|
||||
- name: Login to Docker Hub
|
||||
if: ${{ github.event_name == 'push' }}
|
||||
if: ${{ github.event_name == 'push' && github.actor == 'qgis' }}
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
@ -360,7 +360,7 @@ jobs:
|
||||
context: .
|
||||
file: .docker/qgis3-qt${{ matrix.qt-version }}-build-deps.dockerfile
|
||||
tags: qgis/qgis3-qt${{ matrix.qt-version }}-build-deps-bin-only:${{ github.event.pull_request.base.ref || github.ref_name }}
|
||||
push: ${{ github.event_name == 'push' }}
|
||||
push: ${{ github.event_name == 'push' && github.actor == 'qgis' }}
|
||||
pull: true
|
||||
target: ${{ matrix.docker-target }}
|
||||
build-args:
|
||||
@ -458,7 +458,7 @@ jobs:
|
||||
fetch-depth: 2
|
||||
|
||||
- name: Login to Docker Hub
|
||||
if: ${{ github.event_name == 'push' }}
|
||||
if: ${{ github.event_name == 'push' && github.actor == 'qgis' }}
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
@ -471,7 +471,7 @@ jobs:
|
||||
context: .
|
||||
file: .docker/qgis3-qt${{ matrix.qt-version }}-build-deps.dockerfile
|
||||
tags: qgis/qgis3-qt${{ matrix.qt-version }}-build-deps-bin-only:${{ github.event.pull_request.base.ref || github.ref_name }}
|
||||
push: ${{ github.event_name == 'push' }}
|
||||
push: ${{ github.event_name == 'push' && github.actor == 'qgis' }}
|
||||
pull: true
|
||||
target: ${{ matrix.docker-target }}
|
||||
build-args:
|
||||
|
Loading…
x
Reference in New Issue
Block a user