--- kind: pipeline type: docker name: build-arm64 platform: os: linux arch: arm64 steps: - name: build front image: node:21-alpine commands: - mkdir deploy - cd ui - npm install --network-timeout=100000 - npm run build - tar chjf ../deploy/static.tar.bz2 build - name: vet image: golang:1-alpine commands: - apk --no-cache add build-base - go vet -v -buildvcs=false - name: backend image: golang:1-alpine commands: - apk --no-cache add build-base - go get -v - go build -v -buildvcs=false -ldflags="-s -w" - name: publish image: plugins/docker settings: repo: nemunaire/atsebay.t auto_tag: true auto_tag_suffix: ${DRONE_STAGE_OS}-${DRONE_STAGE_ARCH} username: from_secret: docker_username password: from_secret: docker_password trigger: event: - cron - push - tag --- kind: pipeline name: docker-manifest steps: - name: publish image: plugins/manifest settings: auto_tag: true ignore_missing: true spec: .drone-manifest.yml username: from_secret: docker_username password: from_secret: docker_password trigger: event: - cron - push - tag depends_on: - build-arm64