9 Commits

Author SHA1 Message Date
1ca0ded172 1.0.10 with readme
Some checks failed
publish-nuget / checkout-code (push) Successful in 5s
publish-nuget / build-and-publish (push) Failing after 12s
2025-12-31 16:19:24 +03:00
881c8def09 Update .gitea/workflows/publish-nuget.yml 2025-12-31 12:42:23 +00:00
75179f6255 Update .gitea/workflows/publish-nuget.yml 2025-12-31 12:36:51 +00:00
0b294905c7 Update .gitea/workflows/publish-nuget.yml 2025-12-31 12:33:41 +00:00
5a487e6ef3 Update .gitea/workflows/publish-nuget.yml 2025-12-31 11:16:09 +00:00
c13832dd61 Update .gitea/workflows/publish-nuget.yml 2025-12-31 11:13:56 +00:00
ecec7dca3e Update s8n-runtime/s8n-runtime.csproj
Some checks failed
publish-nuget / checkout-code (push) Successful in 5s
publish-nuget / build-and-publish (push) Failing after 15s
2025-12-31 10:58:53 +00:00
87d32260d4 Update .gitea/workflows/publish-nuget.yml
Some checks failed
publish-nuget / checkout-code (push) Successful in 17s
publish-nuget / build-and-publish (push) Failing after 45s
2025-12-31 10:35:40 +00:00
b8298df37e Update .gitea/workflows/publish-nuget.yml
Some checks failed
publish-nuget / checkout-code (push) Successful in 5s
publish-nuget / build-and-publish (push) Failing after 3s
2025-12-31 10:16:53 +00:00
3 changed files with 46 additions and 11 deletions

View File

@@ -5,18 +5,42 @@ run-name: ${{ gitea.actor }} is building new NuGet version 🚀
on:
push:
tags:
- 'v*' # Only trigger on tags like v1.0.0
- 'v*'
workflow_dispatch:
# Optional: you can add inputs here to prompt for values when manually triggering
# inputs:
# notes:
# description: 'Notes'
# required: true
# default: 'Just CI Build'
jobs:
buildnuget:
runs-on: ubuntu-latest # Gitea Actions uses standard runner labels like GitHub
container:
image: mcr.microsoft.com/dotnet/sdk:10.0
checkout-code:
runs-on: ubuntu-latest # Has Git + Node.js for checkout
steps:
- name: Checkout code
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0 # Needed for version detection if used
- name: Upload source code as artifact
uses: actions/upload-artifact@v3
with:
name: source-code
path: ./
retention-days: 1
build-and-publish:
runs-on: ubuntu-latest
container:
image: vaibhavgawali/dotnet-node-python-openjdk:latest
needs: checkout-code
steps:
- name: Download source code
uses: actions/download-artifact@v3
with:
name: source-code
path: .
- name: Restore dependencies
run: |

9
s8n-runtime/README.md Normal file
View File

@@ -0,0 +1,9 @@
### Set up this registry from the command line:
```
dotnet nuget add source --name Sharp8N --username your_username --password your_token https://code.sharp8n.com/api/packages/Sharp8N/nuget/index.json
```
### To install the package using NuGet, run the following command:
```
dotnet add package --source Sharp8N --version 1.0.10 Sharp8N.Runtime
```
For more information on the NuGet registry, see the [documentation](https://docs.gitea.com/usage/packages/nuget/).

View File

@@ -9,17 +9,19 @@
<!-- Package properties below -->
<IsPackable>true</IsPackable>
<PackageId>Sharp8N.Runtime</PackageId>
<Version>1.0.0</Version>
<Version>1.0.10</Version>
<Authors>Vitalick S</Authors>
<Company>Sharp8N</Company>
<Description>Sharp8N runtime library, that allows run s8n workflows</Description>
<RepositoryUrl>code.sharp8n.com</RepositoryUrl>
<RepositoryUrl>Sharp8N/Sharp8N.Runtime</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>