Files
robotframework/.gitea/workflows/ci.yaml
T
argoyle e67dfebbbd
robotframework / build (pull_request) Successful in 5m48s
feat: trigger CI workflow on version tags
Build and push Docker images when version tags (v*) are pushed,
enabling automated image builds on releases.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-11 13:37:28 +01:00

21 lines
442 B
YAML

name: robotframework
on:
push:
branches: [main]
tags: ['v*']
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
env:
BUILDTOOLS_CONTENT: ${{ secrets.BUILDTOOLS_CONTENT }}
GITEA_REPOSITORY: ${{ gitea.repository }}
steps:
- uses: actions/checkout@v6
- uses: buildtool/setup-buildtools-action@v1
- name: Build and push
run: unset GITEA_TOKEN && build && push