Skip to content

Commit 50001b9

Browse files
authored
Merge pull request #7 from jcdcdev/dev
+changelog-ignore: ci
2 parents b8077c2 + cddc058 commit 50001b9

File tree

4 files changed

+40
-18
lines changed

4 files changed

+40
-18
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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"

.github/workflows/build.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
name: Build
1+
name: 🏗️ Build
22
on:
33
pull_request:
4-
branches: [ "*" ]
4+
branches: "*"
55
workflow_dispatch:
66
jobs:
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 }}

.github/workflows/release.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
name: Release
1+
name: 🚀 Release
22
on:
33
workflow_dispatch:
44
jobs:
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
@@ -20,4 +21,4 @@ jobs:
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 }}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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}}

0 commit comments

Comments
 (0)