ci: do not trigger rust ci if website updated

This commit is contained in:
MedzikUser 2022-05-10 15:43:29 +02:00
parent 7a203a4b75
commit 4c56a96bb9
No known key found for this signature in database
GPG Key ID: A5FAC1E185C112DB
2 changed files with 12 additions and 9 deletions

View File

@ -2,13 +2,14 @@ name: Build release binaries (and publish them if this is a tag)
on: on:
push: push:
paths-ignore: paths:
- '*.md' - '**'
- website/** - '!website/**'
pull_request: pull_request:
paths-ignore: paths:
- website/** - '**'
- '!website/**'
workflow_dispatch: workflow_dispatch:

View File

@ -4,12 +4,14 @@ on:
push: push:
branches: branches:
- main - main
paths-ignore: paths:
- website/** - '**'
- '!website/**'
pull_request: pull_request:
paths-ignore: paths:
- website/** - '**'
- '!website/**'
workflow_dispatch: workflow_dispatch: