Skip to content

Commit 031908a

Browse files
committed
feature: v13 support
1 parent f03b3dd commit 031908a

File tree

208 files changed

+3041
-11413
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

208 files changed

+3041
-11413
lines changed

β€Ž.github/README.mdβ€Ž

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# Umbraco.Community.FileSystemProviders.B2
22

3-
[![Umbraco Version](https://img.shields.io/badge/Umbraco-10.4+-%233544B1?style=flat&logo=umbraco)](https://marketplace.umbraco.com/package/Umbraco.Community.FileSystemProviders.B2)
4-
[![NuGet](https://img.shields.io/nuget/vpre/Umbraco.Community.FileSystemProviders.B2?color=0273B3)](https://www.nuget.org/packages/Umbraco.Community.FileSystemProviders.B2)
5-
[![GitHub license](https://img.shields.io/github/license/jcdcdev/Umbraco.Community.FileSystemProviders.B2?color=8AB803)](../LICENSE)
6-
[![Downloads](https://img.shields.io/nuget/dt/Umbraco.Community.FileSystemProviders.B2?color=cc9900)](https://www.nuget.org/packages/Umbraco.Community.FileSystemProviders.B2/)
3+
[![Umbraco Marketplace](https://img.shields.io/badge/Umbraco-Marketplace-%233544B1?style=flat&logo=umbraco)](https://marketplace.umbraco.com/package/umbraco.community.filesystemproviders.b2)
4+
[![GitHub License](https://img.shields.io/github/license/jcdcdev/Umbraco.Community.FileSystemProviders.B2?color=8AB803&label=License&logo=github)](https://github.com/jcdcdev/Umbraco.Community.FileSystemProviders.B2/blob/main/LICENSE)
5+
[![NuGet Downloads](https://img.shields.io/nuget/dt/Umbraco.Community.FileSystemProviders.B2?color=cc9900&label=Downloads&logo=nuget)](https://www.nuget.org/packages/Umbraco.Community.FileSystemProviders.B2/)
76

87
An implementation of the Umbraco IFileSystem connecting your Umbraco Media section to a [BackBlaze B2 Storage account](https://www.backblaze.com/cloud-storage).
98

β€Ž.github/workflows/build.ymlβ€Ž

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,15 @@ on:
55
workflow_dispatch:
66
jobs:
77
metadata:
8-
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/generate-project-metadata.yml@main
8+
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/generate-project-metadata.yml@dev
99
build:
10-
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/build-template.yml@main
10+
runs-on: ubuntu-latest
1111
needs:
1212
- metadata
13-
with:
14-
project-name: ${{ needs.metadata.outputs.project-name }}
15-
project-path: ${{ needs.metadata.outputs.project-path }}
13+
steps:
14+
- name: Build
15+
uses: jcdcdev/jcdcdev.Umbraco.Github.Build@main
16+
with:
17+
project-name: ${{ needs.metadata.outputs.project-name}}
18+
project-path: ${{ needs.metadata.outputs.project-path }}
19+
umbraco-version: 13
Lines changed: 21 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,29 @@
11
name: πŸš€ Release
22
on:
33
workflow_dispatch:
4+
pull_request:
5+
types: [ closed ]
46
jobs:
57
metadata:
6-
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/generate-project-metadata.yml@main
7-
build:
8-
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/build-template.yml@main
9-
needs:
10-
- metadata
11-
with:
12-
project-name: ${{ needs.metadata.outputs.project-name }}
13-
project-path: ${{ needs.metadata.outputs.project-path }}
8+
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/generate-project-metadata.yml@dev
149
release:
15-
needs:
16-
- build
10+
runs-on: ubuntu-latest
1711
permissions:
1812
contents: write
19-
uses: jcdcdev/jcdcdev.Github.UmbracoSimpleDeploy/.github/workflows/release-template.yml@main
20-
with:
21-
artifact-name: ${{ needs.build.outputs.artifact-name }}
22-
version: ${{ needs.build.outputs.version }}
23-
secrets:
24-
nuget-api-key: ${{ secrets.NUGET_API_KEY }}
13+
needs:
14+
- metadata
15+
steps:
16+
- name: Build
17+
id: build
18+
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Build@main
19+
with:
20+
project-name: ${{ needs.metadata.outputs.project-name}}
21+
project-path: ${{ needs.metadata.outputs.project-path }}
22+
umbraco-version: 13
23+
- name: Release
24+
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Release@main
25+
with:
26+
artifact-name: ${{ steps.build.outputs.artifact-name }}
27+
version: ${{ steps.build.outputs.version }}
28+
nuget-api-key: ${{ secrets.NUGET_API_KEY }}
29+
github-token: ${{ secrets.GITHUB_TOKEN }}

β€ŽLICENSEβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 jcdcdev
3+
Copyright (c) 2024 James Carter
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

β€Ždocs/README_nuget.mdβ€Ž

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Umbraco.Community.FileSystemProviders.B2
2+
3+
[![Documentation](https://img.shields.io/badge/Docs-Quickstart-394933?style=flat&logo=github)](https://github.com/jcdcdev/Umbraco.Community.FileSystemProviders.B2/tree/main?tab=readme-ov-file#quick-start)
4+
[![Umbraco Marketplace](https://img.shields.io/badge/Umbraco-Marketplace-%233544B1?style=flat&logo=umbraco)](https://marketplace.umbraco.com/package/umbraco.community.filesystemproviders.b2)
5+
[![GitHub License](https://img.shields.io/github/license/jcdcdev/Umbraco.Community.FileSystemProviders.B2?color=8AB803&label=License&logo=github)](https://github.com/jcdcdev/Umbraco.Community.FileSystemProviders.B2/blob/main/LICENSE)
6+
[![NuGet Downloads](https://img.shields.io/nuget/dt/Umbraco.Community.FileSystemProviders.B2?color=cc9900&label=Downloads&logo=nuget)](https://www.nuget.org/packages/Umbraco.Community.FileSystemProviders.B2/)
7+
8+
An implementation of the Umbraco IFileSystem connecting your Umbraco Media section to a [BackBlaze B2 Storage account](https://www.backblaze.com/cloud-storage) and other S3 compatible storage providers.

β€Žsrc/Directory.Build.propsβ€Ž

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<Project>
2+
<PropertyGroup>
3+
<NuGetAuditMode>all</NuGetAuditMode>
4+
<NuGetAuditLevel>high</NuGetAuditLevel>
5+
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
6+
</PropertyGroup>
7+
</Project>

β€Žsrc/TestSite.10/Composer.csβ€Ž

Lines changed: 0 additions & 10 deletions
This file was deleted.

β€Žsrc/TestSite.10/Program.csβ€Ž

Lines changed: 0 additions & 18 deletions
This file was deleted.

β€Žsrc/TestSite.10/Properties/launchSettings.jsonβ€Ž

Lines changed: 0 additions & 29 deletions
This file was deleted.

β€Žsrc/TestSite.10/Startup.csβ€Ž

Lines changed: 0 additions & 64 deletions
This file was deleted.

0 commit comments

Comments
Β (0)