-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d8b6a9f
commit e675f30
Showing
5 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
jobs: | ||
build-extension: | ||
runs-on: ubuntu-latest | ||
env: | ||
env: | ||
DOTNET_NOLOGO: true | ||
DOTNET_CLI_TELEMETRY_OPTOUT: true | ||
RepositoryUrl: 'https://github.com/${{ github.repository }}' | ||
|
@@ -18,23 +18,23 @@ jobs: | |
PackageReleaseNotes: 'https://github.com/${{ github.repository }}/releases' | ||
ContinuousIntegrationBuild: true | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup .NET Core 7 | ||
- uses: actions/checkout@v2 | ||
- name: Setup .NET Core 8 | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: '7.0' | ||
dotnet-version: '8.0' | ||
- name: Calculate next version | ||
uses: cezarypiatek/[email protected] | ||
with: | ||
minor-pattern: '.*' | ||
major-pattern: 'BREAKING CHANGES' | ||
output-to-env-variable: 'VersionPrefix' | ||
output-to-env-variable: 'VersionPrefix' | ||
- name: Restore dependencies | ||
run: | | ||
dotnet nuget locals all --clear | ||
dotnet restore ${{ env.SolutionPath }} | ||
- name: Build extension | ||
run: dotnet build ${{ env.SolutionPath }} -maxcpucount:1 | ||
run: dotnet build ${{ env.SolutionPath }} -maxcpucount:1 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Build docker | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,10 +24,10 @@ jobs: | |
PackageLicenseExpression: 'MIT' | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup .NET Core 7 | ||
- name: Setup .NET Core 8 | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: '7.0' | ||
dotnet-version: '8.0' | ||
- name: Calculate next version | ||
uses: cezarypiatek/[email protected] | ||
with: | ||
|
@@ -41,7 +41,7 @@ jobs: | |
shell: pwsh | ||
- name: Build extension | ||
run: | | ||
dotnet build $env:SolutionPath -maxcpucount:1 | ||
dotnet build $env:SolutionPath -maxcpucount:1 | ||
shell: pwsh | ||
- name: Generate release note | ||
run: | | ||
|
This file contains 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
This file contains 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
This file contains 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