-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into core-jumptable
- Loading branch information
Showing
19 changed files
with
286 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Nuget Package Cleanup (github) | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' # Run every day at 24:00 | ||
|
||
jobs: | ||
delete-pkgs: | ||
name: Delete Old Nuget Packages | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Delete Neo Package | ||
uses: actions/delete-package-versions@v4 | ||
with: | ||
package-name: Neo | ||
package-type: nuget | ||
min-versions-to-keep: 3 | ||
token: "${{ secrets.GITHUB_TOKEN }}" | ||
|
||
- name: Delete Neo.ConsoleService Package | ||
uses: actions/delete-package-versions@v4 | ||
with: | ||
package-name: Neo.ConsoleService | ||
package-type: nuget | ||
min-versions-to-keep: 3 | ||
token: "${{ secrets.GITHUB_TOKEN }}" | ||
|
||
- name: Delete Neo.ConsoleService Package | ||
uses: actions/delete-package-versions@v4 | ||
with: | ||
package-name: Neo.ConsoleService | ||
package-type: nuget | ||
min-versions-to-keep: 3 | ||
token: "${{ secrets.GITHUB_TOKEN }}" | ||
|
||
- name: Delete Neo.Json Package | ||
uses: actions/delete-package-versions@v4 | ||
with: | ||
package-name: Neo.Json | ||
package-type: nuget | ||
min-versions-to-keep: 3 | ||
token: "${{ secrets.GITHUB_TOKEN }}" | ||
|
||
- name: Delete Neo.VM Package | ||
uses: actions/delete-package-versions@v4 | ||
with: | ||
package-name: Neo.VM | ||
package-type: nuget | ||
min-versions-to-keep: 3 | ||
token: "${{ secrets.GITHUB_TOKEN }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.1;net7.0</TargetFrameworks> | ||
<Nullable>enable</Nullable> | ||
<PackageTags>NEO;Blockchain;Extensions</PackageTags> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Akka" Version="1.5.14" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<InternalsVisibleTo Include="Neo" /> | ||
<InternalsVisibleTo Include="Neo.IO" /> | ||
<InternalsVisibleTo Include="$(AssemblyName).Tests" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.