mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00
feat(ci): skip build on misc files (#1854)
feat(ci): don't build on misc files
This commit is contained in:
parent
4c39198c37
commit
b07556ceaa
1 changed files with 36 additions and 22 deletions
16
.github/workflows/release.yml
vendored
16
.github/workflows/release.yml
vendored
|
@ -7,7 +7,21 @@ on:
|
||||||
- "develop"
|
- "develop"
|
||||||
tags:
|
tags:
|
||||||
- 'v*'
|
- 'v*'
|
||||||
|
paths-ignore:
|
||||||
|
- '.github/ISSUE_TEMPLATE/**'
|
||||||
|
- '.github/images/**'
|
||||||
|
- 'config.toml'
|
||||||
|
- 'docker-compose.yml'
|
||||||
|
- 'Makefile'
|
||||||
|
- '**.md'
|
||||||
pull_request:
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- '.github/ISSUE_TEMPLATE/**'
|
||||||
|
- '.github/images/**'
|
||||||
|
- 'config.toml'
|
||||||
|
- 'docker-compose.yml'
|
||||||
|
- 'Makefile'
|
||||||
|
- '**.md'
|
||||||
|
|
||||||
env:
|
env:
|
||||||
REGISTRY: ghcr.io
|
REGISTRY: ghcr.io
|
||||||
|
@ -267,7 +281,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
distribution: goreleaser
|
distribution: goreleaser
|
||||||
version: "~> v2"
|
version: "~> v2"
|
||||||
args: release --clean --skip=validate --skip=publish --parallelism 5
|
args: release --clean --skip=validate,publish --parallelism 5
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue