Remove Woodpecker CI configuration file to simplify build process and eliminate unused settings.

This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-04-09 19:18:02 +03:00
parent f1c116c343
commit 74f84aaee7
2 changed files with 20 additions and 25 deletions
+20
View File
@@ -0,0 +1,20 @@
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/autopilot:${{ github.ref_name }}-${{ matrix.tag }} .
docker push localhost:5000/autopilot:${{ github.ref_name }}-${{ matrix.tag }}