Skip to content

Update dependency dotnet-sdk to v8.0.402 (#1047) #129

Update dependency dotnet-sdk to v8.0.402 (#1047)

Update dependency dotnet-sdk to v8.0.402 (#1047) #129

Workflow file for this run

name: Packages CI
on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
permissions:
contents: write
id-token: write
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install .NET SDK
uses: actions/setup-dotnet@v4
with:
global-json-file: 'global.json'
dotnet-version: |
7.x
6.x
- name: Version
id: version
uses: ./.github/actions/compute-version
- name: Build
uses: ./.github/actions/dotnet-build
with:
assemblyVersion: ${{ steps.version.outputs.assemblyVersion }}
buildConfiguration: Release
fileVersion: ${{ steps.version.outputs.fileVersion }}
informationalVersion: ${{ steps.version.outputs.informationalVersion }}
- name: Login
uses: azure/login@v2
with:
allow-no-subscriptions: true
client-id: ${{ secrets.CLIENT_ID }}
tenant-id: ${{ secrets.TENANT_ID }}
- name: Publish
uses: ./.github/actions/dotnet-publish
with:
buildConfiguration: Release
packageFolder: ${{ github.workspace }}/packages
packageVersion: ${{ steps.version.outputs.nuGetVersion }}
- name: Release
uses: ./.github/actions/github-release
with:
commitSha: ${{ github.sha }}
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
packageFolder: ${{ github.workspace }}/packages
repository: ${{ github.repository }}
tag: v${{ steps.version.outputs.nuGetVersion }}
title: '${{ steps.version.outputs.nuGetVersion }}: ${{ github.event.head_commit.message }}'