Build action
This commit is contained in:
parent
53a10e3e08
commit
bd66f599ff
@ -2,7 +2,7 @@
|
|||||||
# Build docker image
|
# Build docker image
|
||||||
#
|
#
|
||||||
|
|
||||||
name: Démo
|
name: Build
|
||||||
run-name: ${{ gitea.actor }} running CI in the pipeline 🚀
|
run-name: ${{ gitea.actor }} running CI in the pipeline 🚀
|
||||||
on: [ push ]
|
on: [ push ]
|
||||||
|
|
||||||
@ -15,3 +15,13 @@ jobs:
|
|||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Set up docker buildx
|
- name: Set up docker buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
|
- name: Login to Docker Hub
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
- name: Build and do not push
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
push: false
|
||||||
|
tags: zeguigui/open-report-analyzer:latest
|
Loading…
Reference in New Issue
Block a user