mirror of
https://github.com/librecaptcha/lc-core.git
synced 2025-11-21 02:09:03 -05:00
protect docker actions on pull requests
This commit is contained in:
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 }}
|
||||
|
||||
Reference in New Issue
Block a user