Skip to content

Commit 9d0ee8b

Browse files
committed
fix publish trigger
1 parent 3646b2e commit 9d0ee8b

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
22

3-
name: dotnet-CI
3+
name: Build
44

55
# Trigger the action on push to master
66
on:
@@ -10,7 +10,7 @@ on:
1010
- master # Run for pushes to master
1111
pull_request:
1212
branches:
13-
- '*' # Run the workflow for all pull requests
13+
- * # Run the workflow for all pull requests
1414

1515
# Sets permissions of the GITHUB_TOKEN to allow reading packages
1616
permissions:

.github/workflows/publish.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
22

3-
name: publish
3+
name: Publish
44

55
on:
66
push:
7-
branches:
8-
- master # Run the workflow when pushing to the master branch
97
tags:
108
- v** # Only when a v... tag is pushed
119

0 commit comments

Comments
 (0)