Files
cursor-devbox/.gitea/workflows/build-and-push.yaml
T
Ubuntu 05ea40562c
build-and-push / build (push) Failing after 1m42s
Initial cursor-devbox: image, deploy manifests, and Flux SHA automation.
Owns Dockerfile/CI and node1 workload YAML; ImagePolicy elects run_number-sha tags and ImageUpdateAutomation commits them into deploy/.
2026-09-20 12:57:44 +00:00

34 lines
1.0 KiB
YAML

name: build-and-push
on:
push:
branches: [master]
paths:
- 'Dockerfile'
- 'entrypoint.sh'
- '.gitea/workflows/build-and-push.yaml'
workflow_dispatch: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: dcr.trinitysan.by
username: ${{ secrets.DCR_USERNAME }}
password: ${{ secrets.DCR_PASSWORD }}
- uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile
push: true
tags: |
dcr.trinitysan.by/infra/cursor-devbox:latest
dcr.trinitysan.by/infra/cursor-devbox:${{ github.sha }}
dcr.trinitysan.by/infra/cursor-devbox:${{ github.run_number }}-${{ github.sha }}
cache-from: type=registry,ref=dcr.trinitysan.by/infra/cursor-devbox:build-cache
cache-to: type=registry,ref=dcr.trinitysan.by/infra/cursor-devbox:build-cache,mode=max