This commit is contained in:
Alois 2026-04-02 22:28:25 +02:00
commit f2f7ff657f
70 changed files with 15598 additions and 0 deletions

23
.github/workflows/build.yml vendored Normal file
View file

@ -0,0 +1,23 @@
name: Build & Publish Docker Image
on:
workflow_dispatch:
jobs:
build:
name: Build & Publish Docker Image
runs-on: ubuntu-latest
steps:
- name: Set up repository
uses: actions/checkout@v4
- name: Login
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWD }}
- name: Build & Push
run: |
docker build -t tensamin/iota:latest .
docker push tensamin/iota:latest