Skip to content

Commit

Permalink
Action update.
Browse files Browse the repository at this point in the history
  • Loading branch information
iwatkot committed Jul 18, 2024
1 parent 7c23848 commit 7411e92
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build_webui.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7411e92

Please sign in to comment.