Skip to content

Commit

Permalink
v0.6.0-beta3: Layer Patches (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
talenfisher authored Dec 5, 2020
1 parent 90494be commit 54aca0c
Show file tree
Hide file tree
Showing 5 changed files with 985 additions and 5 deletions.
7 changes: 7 additions & 0 deletions .github/releases/v0.6.0-beta3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
This release includes patches to the Lambda Layer, including:

- Addition of third party notices.
- Inclusion of our License in the Layer.
- Inclusion of our Readme in the Layer.
- Adds the Layer ARN as a CloudFormation template output.

5 changes: 3 additions & 2 deletions src/Layer/Layer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@
<ItemGroup>
<None Include="build/**" Pack="true" PackagePath="build/" />
<None Include="Layer.template.yml" CopyToOutputDirectory="always" />
<None Include="../../README.md" CopyToOutputDirectory="always" TargetPath="layer/README.md" />
<None Include="../../LICENSE.txt" CopyToOutputDirectory="always" TargetPath="layer/LICENSE.txt" />
<ContentWithTargetPath Include="../../README.md" CopyToOutputDirectory="always" TargetPath="layer/README.md" />
<ContentWithTargetPath Include="../../LICENSE.txt" CopyToOutputDirectory="always" TargetPath="layer/LICENSE.txt" />
<ContentWithTargetPath Include="./THIRD-PARTY-NOTICES.txt" CopyToOutputDirectory="always" TargetPath="layer/THIRD-PARTY-NOTICES.txt" />
</ItemGroup>

<ItemGroup>
Expand Down
11 changes: 9 additions & 2 deletions src/Layer/Layer.template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Metadata:
Description: Lambda Layer containing a .NET Runtime Package Store of Lambdajection and its dependencies.
Author: Cythral LLC
SpdxLicenseId: MIT
LicenseUrl: ./LICENSE.txt
ReadmeUrl: ./README.md
LicenseUrl: ./layer/LICENSE.txt
ReadmeUrl: ./layer/README.md
Labels:
- lambda
- dotnet
Expand All @@ -16,6 +16,7 @@ Metadata:
- lambdajection
HomePageUrl: https://github.com/cythral/lambdajection
SourceCodeUrl: https://github.com/cythral/lambdajection

Resources:
Layer:
Type: AWS::Serverless::LayerVersion
Expand All @@ -25,3 +26,9 @@ Resources:
CompatibleRuntimes:
- provided.al2
ContentUri: ./layer
LicenseInfo: MIT

Outputs:
LayerArn:
Description: ARN of the Lambdajection Layer
Value: !Ref Layer
Loading

0 comments on commit 54aca0c

Please sign in to comment.