Fix port configuration and update Hamming network logic; enhance index view formulas and add deployment workflow
Build and Push / build (push) Failing after 1m22s

This commit is contained in:
Dmitry
2026-05-17 17:21:58 +03:00
parent 7c7e28c3d6
commit 75e8f3a400
5 changed files with 49 additions and 20 deletions
+21
View File
@@ -0,0 +1,21 @@
name: Build and Push
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Login to registry
run: |
echo "${{ secrets.REGISTRY_PASSWORD }}" | \
docker login git.ada-dev.ru -u ${{ secrets.REGISTRY_USER }} --password-stdin
- name: Build and push
run: |
docker build -t git.ada-dev.ru/ada/${{ gitea.repository }}:latest .
docker push git.ada-dev.ru/ada/${{ gitea.repository }}:latest