Gemini fix

This commit is contained in:
2024-09-14 23:12:53 +03:30
parent b3ade03630
commit fa0892a527

View File

@@ -1,15 +1,22 @@
kind: pipeline image: mcr.microsoft.com/dotnet/sdk:8.0
type: docker
name: default
steps: jobs:
- name: build build:
image: mcr.microsoft.com/dotnet/sdk:8.0 runs: on: ubuntu-latest
environment: steps:
DOTNET_CLI_TELEMETRY_OPTOUT: "1" - uses: actions/checkout@v3
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: "1" - name: Setup telegram.bot
commands: run: dotnet nuget add source https://pkgs.dev.azure.com/tgbots/Telegram.Bot/_packaging/release/nuget/v3/index.json -n Telegram.Bot
- dotnet nuget add source https://pkgs.dev.azure.com/tgbots/Telegram.Bot/_packaging/release/nuget/v3/index.json -n Telegram.Bot - name: Restore dependencies
- dotnet restore --no-cache run: dotnet restore
- dotnet publish -c Release -r linux-x64 --self-contained true /p:PublishSingleFile=true /p:PublishTrimmed=false /p:EnableCompressionInSingleFile=true - name: Build
- tar -czvf publish.tar.gz --use-compress-program="gzip -9" -C bin/Release/net8.0/linux-x64/publish/ . run: dotnet build -c Release
- name: Publish
run: dotnet publish -c Release -r linux-x64 --self-contained true /p:PublishSingleFile=true /p:PublishTrimmed=false /p:EnableCompressionInSingleFile=true
- name: Create artifact
run: tar -czvf publish.tar.gz publish
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: publish.tar.gz
path: publish.tar.gz