Adds application

This commit is contained in:
Michel Fedde 2025-08-16 16:22:11 +02:00
commit b2dc69142a
12 changed files with 1683 additions and 0 deletions

View file

@ -0,0 +1,39 @@
name: build-container
on:
push:
tags:
- release-*
workflow_dispatch:
env:
BUILD_TARGET: DOCKER
BUILD_LABEL: release
jobs:
build:
runs-on: node-20
steps:
- name: Checkout the repo
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build
- name: Install Docker
run: curl https://get.docker.com | sh
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Container Registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and Push
uses: docker/build-push-action@v6
with:
push: true
tags: neintonine/watchmemelt:${{ env.BUILD_LABEL }}
context: .