22 lines
387 B
YAML
22 lines
387 B
YAML
name: On push to master branch
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
paths-ignore:
|
|
- ".gitea/**"
|
|
- ".github/**"
|
|
- "*.md"
|
|
|
|
jobs:
|
|
run-tests:
|
|
uses: ./.gitea/workflows/run-tests.yml
|
|
with:
|
|
target: ${{ github.event.ref }}
|
|
|
|
publish-release:
|
|
uses: ./.gitea/workflows/publish-release.yml
|
|
with:
|
|
target: ${{ github.event.ref }}
|
|
tag: latest
|