Files
ui/.gitea/workflows/build.yml
T
Oleksandr Bezdieniezhnykh 0c8eaca4ff Comment out amd64 matrix
Made-with: Cursor
2026-04-09 23:33:25 +03:00

21 lines
527 B
YAML

name: build
on:
push:
branches: [stage, main]
workflow_dispatch:
jobs:
build:
runs-on: [self-hosted, linux, "${{ matrix.arch }}"]
strategy:
matrix:
include:
- arch: arm64
tag: arm
# - arch: amd64
# tag: amd64
steps:
- uses: actions/checkout@v4
- run: |
docker build -f Dockerfile -t localhost:5000/ui:${{ github.ref_name }}-${{ matrix.tag }} .
docker push localhost:5000/ui:${{ github.ref_name }}-${{ matrix.tag }}