build: license tags in nuspec - use MIT expression instead of file reference #3409
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
merge_group: | |
types: [checks_requested] | |
branches: [main] | |
jobs: | |
pinnedactions: | |
if: ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' }} | |
uses: ./.github/workflows/pinned-actions.yml | |
docupdate: | |
if: ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' }} | |
uses: ./.github/workflows/doc-update.yml | |
format: | |
if: ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' }} | |
uses: ./.github/workflows/format.yml | |
dogfood: | |
if: ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' }} | |
uses: ./.github/workflows/dogfood.yml | |
sonarcloud: | |
uses: ./.github/workflows/sonarcloud.yml | |
secrets: | |
sonar-auth-token: ${{ secrets.SONAR_TOKEN }} | |
performance: | |
uses: ./.github/workflows/performance.yml | |
tagversion: | |
uses: ./.github/workflows/tagversion.yml | |
build: | |
needs: tagversion | |
uses: ./.github/workflows/dotnetcore.yml | |
with: | |
new_tag: ${{ needs.tagversion.outputs.new_tag }} | |
new_version: ${{ needs.tagversion.outputs.new_version }} |