File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed
Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -293,6 +293,12 @@ public function getFiles()
293293 'template ' => '/dotnet/LICENSE.twig ' ,
294294 'minify ' => false ,
295295 ],
296+ [
297+ 'scope ' => 'default ' ,
298+ 'destination ' => '.travis.yml ' ,
299+ 'template ' => '/dotnet/.travis.yml.twig ' ,
300+ 'minify ' => false ,
301+ ],
296302 [
297303 'scope ' => 'method ' ,
298304 'destination ' => 'docs/examples/{{service.name | caseLower}}/{{method.name | caseDash}}.md ' ,
Original file line number Diff line number Diff line change 1+ language: csharp
2+
3+ mono: none
4+
5+ dotnet: 5.0
6+
7+ before_install:
8+ - sudo apt-get -y install libpam0g-dev
9+
10+ install:
11+ - dotnet restore ./src
12+
13+ script:
14+ - dotnet build -c Release ./src
15+
16+ before_deploy:
17+ - dotnet pack -c Release ./src
18+
19+ deploy:
20+ skip_cleanup: true
21+ provider: script
22+ script: dotnet nuget push ./src/Appwrite/bin/Release/Appwrite.*.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json
23+ on:
24+ tags: true
You can’t perform that action at this time.
0 commit comments