From 5a795297d4806242b5516688510d756c9a42605f Mon Sep 17 00:00:00 2001 From: ldbiz <16339290+ldbiz@users.noreply.github.com> Date: Fri, 5 Jan 2024 16:43:06 +0000 Subject: [PATCH] w3act stack docker builds standard workflow --- .github/workflows/push-to-docker-hub.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/push-to-docker-hub.yml diff --git a/.github/workflows/push-to-docker-hub.yml b/.github/workflows/push-to-docker-hub.yml new file mode 100644 index 0000000..a933903 --- /dev/null +++ b/.github/workflows/push-to-docker-hub.yml @@ -0,0 +1,15 @@ +name: Build, scan and push to Docker Hub + +on: + push: + tags: + - '*' + branches: + - '*' + +jobs: + run_docker_build_workflow: + uses: ukwa/ukwa-services/.github/workflows/push-to-docker-hub.yml@master + secrets: + DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }} + DOCKER_HUB_ACCESS_TOKEN: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}