From fdaf49ab26d75c65b9d1590f90b1ceef1caf83fa Mon Sep 17 00:00:00 2001 From: Tim Kainz Date: Sun, 5 Apr 2026 00:18:32 +0200 Subject: [PATCH] add github action pipeline --- .github/workflows/publish.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..964c85a --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,16 @@ +name: publish.yml +on: + push: + branches: + - main +jobs: + publish: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout + - name: Build and push Docker image + id: push + uses: docker/build-push-action + with: + push: true + tags: docker.io/tikaiz/website-frontend:latest