Skip to content

Commit 5841d7b

Browse files
committed
pipeline fixes
1 parent 8909246 commit 5841d7b

File tree

5 files changed

+47
-38
lines changed

5 files changed

+47
-38
lines changed

.github/workflows/csharp-rest-nuget.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
name: Publish csharp-rest package
2-
#on: []
3-
#on:
4-
# release:
5-
# types: [created]
6-
# push:
7-
# branches:
8-
# - master
2+
on:
3+
release:
4+
types: [created]
5+
push:
6+
branches:
7+
- master
8+
paths:
9+
- 'coinapi/market-data-api/sdk/csharp-rest/**'
10+
911
jobs:
1012
publish:
1113
runs-on: ubuntu-latest
1214
defaults:
1315
run:
14-
working-directory: coinapi/market-data-api/csharp-rest
16+
working-directory: coinapi/market-data-api/sdk/csharp-rest
1517
steps:
1618
- uses: actions/checkout@v2
1719

.github/workflows/csharp-ws-nuget.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
name: Publish csharp-ws package
2-
on: []
3-
#on:
4-
# release:
5-
# types: [created]
6-
# push:
7-
# branches:
8-
# - master
2+
on:
3+
release:
4+
types: [created]
5+
push:
6+
branches:
7+
- master
8+
paths:
9+
- 'coinapi/market-data-api/sdk/csharp-ws/**'
910

1011
jobs:
1112
publish:
1213
runs-on: ubuntu-latest
1314
defaults:
1415
run:
15-
working-directory: coinapi/market-data-api/csharp-ws
16+
working-directory: coinapi/market-data-api/sdk/csharp-ws
1617
steps:
1718
- uses: actions/checkout@v2
1819

.github/workflows/java-rest-github.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
name: Publish java-rest package to the GitHub Packages
2-
on: []
3-
# workflow_dispatch:
4-
# release:
5-
# types: [created]
6-
# push:
7-
# branches:
8-
# - master
2+
on:
3+
release:
4+
types: [created]
5+
push:
6+
branches:
7+
- master
8+
paths:
9+
- 'coinapi/market-data-api/sdk/java-rest/**'
10+
911
jobs:
1012
publish:
1113
runs-on: ubuntu-latest
1214
defaults:
1315
run:
14-
working-directory: coinapi/market-data-api/java-rest
16+
working-directory: coinapi/market-data-api/sdk/java-rest
1517
steps:
1618
- uses: actions/checkout@v2
1719

.github/workflows/java-ws-github.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
name: Publish java-websocket package to the GitHub Packages
2-
on: []
3-
# release:
4-
# types: [created]
5-
# push:
6-
# branches:
7-
# - master
2+
on:
3+
release:
4+
types: [created]
5+
push:
6+
branches:
7+
- master
8+
paths:
9+
- 'coinapi/market-data-api/sdk/java-websocket/**'
810

911
jobs:
1012
publish:
1113
runs-on: ubuntu-latest
1214
defaults:
1315
run:
14-
working-directory: coinapi/market-data-api/java-websocket
16+
working-directory: coinapi/market-data-api/sdk/java-websocket
1517
steps:
1618
- uses: actions/checkout@v2
1719

.github/workflows/python-rest-nuget.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
name: Publish python-rest package to the PyPi
2-
on: []
3-
# release:
4-
# types: [created]
5-
# push:
6-
# branches:
7-
# - master
2+
on:
3+
release:
4+
types: [created]
5+
push:
6+
branches:
7+
- master
8+
paths:
9+
- 'coinapi/market-data-api/sdk/python-rest/**'
810

911
jobs:
1012
publish:
1113
runs-on: ubuntu-latest
1214
defaults:
1315
run:
14-
working-directory: coinapi/market-data-api/python-rest
16+
working-directory: coinapi/market-data-api/sdk/python-rest
1517
steps:
1618
- uses: actions/checkout@v2
1719

0 commit comments

Comments
 (0)