Skip to content

Commit

Permalink
Fix paths in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Tides committed Nov 27, 2024
1 parent 84583b9 commit e0c3050
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docfx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
paths:
- "**/*.cs"
- "**/*.csproj"
- "./github/workflows/docfx.yml"
- ".github/workflows/docfx.yml"
jobs:
update-docs:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ on:
paths:
- "**/*.cs"
- "**/*.csproj"
- "./github/workflows/dotnet.yml"
- ".github/workflows/dotnet.yml"
pull_request:
branches: [ 1.* ]
paths:
- "**/*.cs"
- "**/*.csproj"
- "./github/workflows/dotnet.yml"
- ".github/workflows/dotnet.yml"

jobs:
build:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/nuget-push.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
name: Nuget

on:
workflow_dispatch:
push:
branches: ["1.*"]
# Publish semver tags as releases.
tags: ["v*.*.*"]
# don't publish when we change workflow files
paths-ignore:
- "./github/workflows/*.yml"
- ".github/workflows/*.yml"

env:
DOTNET_NOLOGO: 1
Expand Down

0 comments on commit e0c3050

Please sign in to comment.