synchronization
This commit is contained in:
31
CICD/Github/.github/workflows/images.yml
vendored
Normal file
31
CICD/Github/.github/workflows/images.yml
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
name: Build-Work
|
||||
|
||||
on:
|
||||
repository_dispatch:
|
||||
types:
|
||||
- StartAction-Build-Images
|
||||
|
||||
jobs:
|
||||
Build-Images:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
-
|
||||
name: Login to Docker Hub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
-
|
||||
name: Build and push image
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
context: ./
|
||||
file: ./Dockerfile
|
||||
push: true
|
||||
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/demo:v1.0
|
Reference in New Issue
Block a user