Files
CouchLog/.gitea/workflows/linux_x64_docker.yaml
Henry 6ff07b6f46
Some checks failed
Build ARM64 Linux / build-arm64 (push) Failing after 1s
Build Linux x64 / build-linux-x64 (push) Failing after 1s
Build Docker Linux x64 / build-docker-linux-x64 (push) Failing after 1s
Build Windows x64 / build-windows-x64 (push) Failing after 1s
Added Install Package Job to Workflows
2025-12-10 00:14:59 +01:00

27 lines
618 B
YAML

name: Build Docker Linux x64
on:
push:
branches:
- main
jobs:
build-docker-linux-x64:
runs-on: [self-hosted, linux, arm64, linux64-docker, docker]
steps:
- name: Install packages
- run: apk add --no-cache git curl wget unzip bash nodejs npm
- name: Checkout
- uses: actions/checkout@v4
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Linux x64 Docker Image
run: |
docker buildx build \
--platform linux/amd64 \
-t myapp:linux-x64 \
--load ./CouchLog/CouchLog.sln