From 7411e924c6b7528fd31e6e7059015a2798c16bae Mon Sep 17 00:00:00 2001 From: iwatkot Date: Thu, 18 Jul 2024 17:31:11 +0200 Subject: [PATCH] Action update. --- .github/workflows/build_webui.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/build_webui.yml diff --git a/.github/workflows/build_webui.yml b/.github/workflows/build_webui.yml new file mode 100644 index 00000000..8a47a63b --- /dev/null +++ b/.github/workflows/build_webui.yml @@ -0,0 +1,27 @@ +name: Docker Image WebUI + +on: + release: + types: [published] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Login to DockerHub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Build and push Docker image + uses: docker/build-push-action@v2 + with: + context: . + push: true + tags: iwatkot/maps4fs:latest + file: ./docker/Dockerfile_webui \ No newline at end of file