Update DacFX to 162.1.172 #8
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
name: CLI Tool | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
env: | |
VERSION: ${{ github.run_number }} | |
jobs: | |
build: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Package CLI 6 | |
run: dotnet pack src\GUI\efcpt.6\efcpt.6.csproj -p:PackageVersion=6.1.${{ env.VERSION }} -p:InformationalVersion=6.1.${{ env.VERSION }} | |
- name: Package CLI 7 | |
run: dotnet pack src\GUI\efcpt.7\efcpt.7.csproj -p:PackageVersion=7.1.${{ env.VERSION }} -p:InformationalVersion=7.1.${{ env.VERSION }} | |
- name: Package CLI 8 | |
run: dotnet pack src\GUI\efcpt.8\efcpt.8.csproj -p:PackageVersion=8.1.${{ env.VERSION }} -p:InformationalVersion=8.1.${{ env.VERSION }} | |
- name: Package Dacpac 6 | |
run: dotnet pack src\GUI\ErikEJ.EntityFrameworkCore.SqlServer.Dacpac\ErikEJ.EntityFrameworkCore.6.SqlServer.Dacpac.csproj | |
- name: Package Dacpac 7 | |
run: dotnet pack src\GUI\ErikEJ.EntityFrameworkCore.7.SqlServer.Dacpac\ErikEJ.EntityFrameworkCore.7.SqlServer.Dacpac.csproj | |
- name: Package Dacpac 8 | |
run: dotnet pack src\GUI\ErikEJ.EntityFrameworkCore.8.SqlServer.Dacpac\ErikEJ.EntityFrameworkCore.8.SqlServer.Dacpac.csproj | |
- name: Package SqlQuery 6 | |
run: dotnet pack src\GUI\ErikEJ.EntityFrameworkCore.6.SqlServer.SqlQuery\ErikEJ.EntityFrameworkCore.6.SqlServer.SqlQuery.csproj | |
- name: Package SqlQuery 7 | |
run: dotnet pack src\GUI\ErikEJ.EntityFrameworkCore.7.SqlServer.SqlQuery\ErikEJ.EntityFrameworkCore.7.SqlServer.SqlQuery.csproj | |
- name: Core test project | |
run: dotnet test src\GUI\NUnitTestCore\NUnitTestCore.csproj | |
continue-on-error: false | |
- name: Publish artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: CLI Tool | |
path: | | |
**/*.nupkg | |
- name: Set NuGet source | |
if: startsWith(github.ref, 'refs/heads/master') | |
run: dotnet nuget add source --username USERNAME --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/ErikEJ/index.json" | |
- name: Publish NuGet | |
if: startsWith(github.ref, 'refs/heads/master') | |
run: dotnet nuget push **\*.nupkg --source "github" --skip-duplicate | |