Files
vikunja/.github/workflows/ci.yml
2025-06-05 16:23:35 +02:00

27 lines
386 B
YAML

name: ci
env:
DO_NOT_TRACK: 1
on:
pull_request:
push:
tags:
- v*
branches:
- main
jobs:
test:
name: Test
uses: ./.github/workflows/test.yml
secrets: inherit
release:
name: Release
if: ${{ github.ref_type == 'tag' || github.ref_name == 'main' }}
uses: ./.github/workflows/release.yml
needs:
- test
secrets: inherit