Skip to content

Acortar el nombre del menu para tech. #7

Acortar el nombre del menu para tech.

Acortar el nombre del menu para tech. #7

Workflow file for this run

name: build
on:
workflow_dispatch:
push:
branches:
- main
env:
SdkVersion: 8.0.100-rc.1.23463.5
VersionPrefix: 42.42.${{ github.run_number }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 🤘 checkout
uses: actions/checkout@v2
- uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.SdkVersion }}
dotnet-quality: 'preview'
- name: 📦 pack
run: dotnet pack -m:1
- name: 🚀 sleet
env:
SLEET_CONNECTION: ${{ secrets.SLEET_CONNECTION }}
if: env.SLEET_CONNECTION != ''
run: |
dotnet tool install -g --version 5.1.3 sleet
sleet push bin --config none -f --verbose -p "SLEET_FEED_CONTAINER=nuget" -p "SLEET_FEED_CONNECTIONSTRING=${{ secrets.SLEET_CONNECTION }}" -p "SLEET_FEED_TYPE=azure" || echo "No packages found"