mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 00:39: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"
|
||||
tags:
|
||||
- 'v*'
|
||||
paths-ignore:
|
||||
- '.github/ISSUE_TEMPLATE/**'
|
||||
- '.github/images/**'
|
||||
- 'config.toml'
|
||||
- 'docker-compose.yml'
|
||||
- 'Makefile'
|
||||
- '**.md'
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- '.github/ISSUE_TEMPLATE/**'
|
||||
- '.github/images/**'
|
||||
- 'config.toml'
|
||||
- 'docker-compose.yml'
|
||||
- 'Makefile'
|
||||
- '**.md'
|
||||
|
||||
env:
|
||||
REGISTRY: ghcr.io
|
||||
|
@ -267,7 +281,7 @@ jobs:
|
|||
with:
|
||||
distribution: goreleaser
|
||||
version: "~> v2"
|
||||
args: release --clean --skip=validate --skip=publish --parallelism 5
|
||||
args: release --clean --skip=validate,publish --parallelism 5
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue