Skip to content

Commit b35de87

Browse files
authored
update
1 parent c0e9c76 commit b35de87

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/pipeline.yml

+5
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,21 @@ on:
99
jobs:
1010
bump:
1111
uses: UnterrainerInformatik/bump-semver-workflow/.github/workflows/workflow.yml@master
12+
with:
13+
self_hosted: true
1214
build:
1315
uses: UnterrainerInformatik/npm-build-workflow/.github/workflows/workflow.yml@master
1416
needs: bump
1517
with:
18+
self_hosted: true
1619
major_version: ${{ needs.bump.outputs.major_version }}
1720
minor_version: ${{ needs.bump.outputs.minor_version }}
1821
build_version: ${{ needs.bump.outputs.build_version }}
1922
docker-build:
2023
uses: UnterrainerInformatik/docker-build-workflow/.github/workflows/workflow.yml@master
2124
needs: [bump, build]
2225
with:
26+
self_hosted: true
2327
major_version: ${{ needs.bump.outputs.major_version }}
2428
minor_version: ${{ needs.bump.outputs.minor_version }}
2529
build_version: ${{ needs.bump.outputs.build_version }}
@@ -31,6 +35,7 @@ jobs:
3135
uses: UnterrainerInformatik/deploy-workflow/.github/workflows/workflow.yml@master
3236
needs: [bump, build, docker-build]
3337
with:
38+
self_hosted: true
3439
major_version: ${{ needs.bump.outputs.major_version }}
3540
minor_version: ${{ needs.bump.outputs.minor_version }}
3641
build_version: ${{ needs.bump.outputs.build_version }}

0 commit comments

Comments
 (0)