Files
oauth2-authorization-server/.gitea/workflows/build.yaml
Andreas Svanberg ee3db2b811
All checks were successful
/ build (push) Successful in 58s
Publish container to package registry / docker-build-test-publish (push) Successful in 5m18s
Automatically publish container images on tag push
When tags matching the pattern 'v[0-9\.]+' are pushed a new image is built and published. It is tagged with the number, and the "latest" rolling tag is updated.
2026-02-20 12:05:26 +01:00

18 lines
417 B
YAML

on:
push:
branches:
- '**' # do not run on tag pushes, handled by separate workflow
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: maven
- name: Build with Maven
run: ./mvnw clean verify --batch-mode