14 lines
229 B
YAML
14 lines
229 B
YAML
name: Build and Push Docker Image
|
|
run-name: ${{ gitea.actor }}
|
|
on:
|
|
push:
|
|
branches:
|
|
- "!main"
|
|
- "**/*"
|
|
|
|
jobs:
|
|
tests:
|
|
uses: ./.gitea/workflows/test.yaml
|
|
build:
|
|
needs: [tests]
|
|
runs-on: ubuntu-latest |