mirror of
https://github.com/librecaptcha/lc-core.git
synced 2025-01-27 13:03:12 -05:00
protect docker actions on pull requests
This commit is contained in:
parent
51a1f0a710
commit
b8679fb5cc
3
.github/workflows/docker-latest.yml
vendored
3
.github/workflows/docker-latest.yml
vendored
@ -21,6 +21,7 @@ jobs:
|
||||
run: sbt assembly
|
||||
|
||||
- name: Login to Docker Hub
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||
@ -36,8 +37,8 @@ jobs:
|
||||
with:
|
||||
context: ./
|
||||
file: ./Runner.Dockerfile
|
||||
push: true
|
||||
tags: librecaptcha/lc-core:latest
|
||||
push: ${{ github.event_name != 'pull_request' }}
|
||||
|
||||
- name: Image digest
|
||||
run: echo ${{ steps.docker_build.outputs.digest }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user