Files
vikunja/.github/workflows/ci.yml
2025-03-26 16:23:38 +01:00

24 lines
362 B
YAML

name: ci
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