File tree Expand file tree Collapse file tree 4 files changed +40
-18
lines changed
Expand file tree Collapse file tree 4 files changed +40
-18
lines changed Original file line number Diff line number Diff line change @@ -3,17 +3,19 @@ updates:
33 - package-ecosystem : nuget
44 directory : " /"
55 schedule :
6- interval : " weekly "
6+ interval : " daily "
77 time : " 04:00"
88 commit-message :
99 prefix : " chore"
1010 include : " scope"
11+ target-branch : " dev"
1112
1213 - package-ecosystem : npm
1314 directory : " /"
1415 schedule :
15- interval : " weekly "
16+ interval : " daily "
1617 time : " 04:00"
1718 commit-message :
1819 prefix : " chore"
1920 include : " scope"
21+ target-branch : " dev"
Original file line number Diff line number Diff line change 1- name : Build
1+ name : 🏗️ Build
22on :
33 pull_request :
4- branches : [ "*" ]
4+ branches : " *"
55 workflow_dispatch :
66jobs :
7+ metadata :
8+ uses : jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/generate-project-metadata.yml@main
79 build :
810 uses : jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/build-template.yml@main
11+ needs :
12+ - metadata
913 with :
10- project-name : ' Umbraco.Community.FileSystemProviders.B2'
11- project-path : ' ./src/Umbraco.Community.FileSystemProviders.B2/Umbraco.Community.FileSystemProviders.B2.csproj'
12- npm-enabled : False
13- npm-working-dir : ' ./src/Umbraco.Community.FileSystemProviders.B2.Client/'
14- npm-run-command : ' build'
14+ project-name : ${{ needs.metadata.outputs.project-name }}
15+ project-path : ${{ needs.metadata.outputs.project-path }}
Original file line number Diff line number Diff line change 1- name : Release
1+ name : 🚀 Release
22on :
33 workflow_dispatch :
44jobs :
5+ metadata :
6+ uses : jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/generate-project-metadata.yml@main
57 build :
6- uses : jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/build-template.yml@main
8+ uses : jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/build-template.yml@main
9+ needs :
10+ - metadata
711 with :
8- project-name : ' Umbraco.Community.FileSystemProviders.B2'
9- project-path : ' ./src/Umbraco.Community.FileSystemProviders.B2/Umbraco.Community.FileSystemProviders.B2.csproj'
10- npm-enabled : False
11- npm-working-dir : ' ./src/Umbraco.Community.FileSystemProviders.B2.Client/'
12- npm-run-command : ' build'
12+ project-name : ${{ needs.metadata.outputs.project-name }}
13+ project-path : ${{ needs.metadata.outputs.project-path }}
1314 release :
14- needs :
15+ needs :
1516 - build
1617 permissions :
1718 contents : write
2021 artifact-name : ${{ needs.build.outputs.artifact-name }}
2122 version : ${{ needs.build.outputs.version }}
2223 secrets :
23- nuget-api-key : ${{ secrets.NUGET_API_KEY }}
24+ nuget-api-key : ${{ secrets.NUGET_API_KEY }}
Original file line number Diff line number Diff line change 1+ name : 📄 Update Releases
2+ on :
3+ workflow_dispatch :
4+ inputs :
5+ start-version :
6+ required : true
7+ default : ' 0.1.0'
8+ end-version :
9+ required : true
10+ default : ' 999.999.999'
11+ jobs :
12+ update-releases :
13+ uses : jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/update-all-releases.yml@main
14+ permissions :
15+ contents : write
16+ with :
17+ start-version : ${{ inputs.start-version}}
18+ end-version : ${{ inputs.end-version}}
You can’t perform that action at this time.
0 commit comments