build-and-push / build (push) Failing after 1m42s
Owns Dockerfile/CI and node1 workload YAML; ImagePolicy elects run_number-sha tags and ImageUpdateAutomation commits them into deploy/.
34 lines
1.0 KiB
YAML
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
|