mirror of
https://github.com/tdlight-team/tdlight-telegram-bot-api.git
synced 2024-11-09 13:57:05 +01:00
Don't push Docker images if the event is a pull request
This commit is contained in:
parent
9b14e5c1b8
commit
f047ece20c
4
.github/workflows/docker.yml
vendored
4
.github/workflows/docker.yml
vendored
@ -81,6 +81,7 @@ jobs:
|
||||
|
||||
- name: Login to ghcr registry
|
||||
uses: docker/login-action@v1
|
||||
if: ${{ ! github.event_name == 'pull_request' }}
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ secrets.GH_USERNAME }}
|
||||
@ -88,6 +89,7 @@ jobs:
|
||||
|
||||
- name: Login to Docker Hub registry
|
||||
uses: docker/login-action@v1
|
||||
if: ${{ ! github.event_name == 'pull_request' }}
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }}
|
||||
@ -106,6 +108,7 @@ jobs:
|
||||
tdlightbotapi:${{ env.HASH_VERSION }}-${{ env.SAFE_ARCH }}
|
||||
|
||||
- name: Tag and push image
|
||||
if: ${{ ! github.event_name == 'pull_request' }}
|
||||
run: |
|
||||
docker tag tdlightbotapi:${{ env.HASH_VERSION }}-${{ env.SAFE_ARCH }} ${{ env.IMAGE_TAG }}:${{ env.HASH_VERSION }}-${{ env.SAFE_ARCH }}
|
||||
docker tag tdlightbotapi:${{ env.HASH_VERSION }}-${{ env.SAFE_ARCH }} ${{ env.IMAGE_TAG }}:${{ env.VERSION }}-${{ env.SAFE_ARCH }}
|
||||
@ -130,6 +133,7 @@ jobs:
|
||||
push-manifest:
|
||||
name: Create and push multi-arch Docker manifest
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ ! github.event_name == 'pull_request' }}
|
||||
env:
|
||||
DOCKER_CLI_EXPERIMENTAL: enabled
|
||||
needs: build
|
||||
|
Loading…
Reference in New Issue
Block a user