| name: Release |
| |
| on: push |
| |
| env: |
| SHA: ${{ GITHUB.SHA }} |
| REF: ${{ GITHUB.REF }} |
| RUN_ID: ${{ GITHUB.RUN_ID }} |
| RUN_NUMBER: ${{ GITHUB.RUN_NUMBER }} |
| BUILD_RUN_NUMBER: build.${{ GITHUB.RUN_NUMBER }} |
| GITHUB_TOKEN: ${{ SECRETS.GITHUB_TOKEN }} |
| MYGET_API_TOKEN: ${{ SECRETS.MYGET_API_KEY }} |
| NUGET_API_TOKEN: ${{ SECRETS.NUGET_API_TOKEN }} |
| COVERALLS_REPO_TOKEN: ${{ SECRETS.COVERALLS_REPO_TOKEN }} |
| |
| jobs: |
| build: |
| runs-on: windows-latest |
| |
| steps: |
| - name: Checkout |
| uses: actions/checkout@v3 |
| with: |
| fetch-depth: 0 |
| |
| - name: Install Chocolatey |
| run: | |
| Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) |
| shell: powershell |
| |
| - name: Install Redis |
| run: choco install redis-64 |
| |
| - name: Start Redis Server |
| run: “C:\ProgramData\chocolatey\lib\redis-64\tools\redis-server.exe” |
| |
| - name: Setup .NET SDK |
| uses: actions/setup-dotnet@v3 |
| with: |
| dotnet-version: | |
| 6.0.x |
| 7.0.x |
| 8.0.x |
| include-prerelease: true |
| |
| - name: Check .NET info |
| run: dotnet --info |
| |
| - name: Install dependencies |
| run: dotnet restore |
| |
| - name: Build solution |
| run: dotnet build -c Release --no-restore |
| |
| - name: Test solution |
| run: dotnet test -c Release --no-build --no-restore --verbosity normal --results-directory test-results --collect:"XPlat Code Coverage" ` |
| -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=json,cobertura,lcov,teamcity,opencover |
| |
| - name: Upload coverage |
| run: | |
| dotnet tool install coveralls.net --version 3.0.0 --tool-path tools; |
| $CommitAuthor = git show -s --pretty=format:"%cn"; |
| echo "Commit author is: $CommitAuthor"; |
| $CommitAuthorEmail = git show -s --pretty=format:"%ce"; |
| echo "Commit author email is: $CommitAuthorEmail"; |
| $CommitMessage = git show -s --pretty=format:"%s"; |
| echo "Commit message is: $CommitMessage"; |
| cp test-results/**/*.opencover.xml test-results |
| tools/csmacnz.Coveralls --opencover -i test-results/coverage.opencover.xml --repoToken $env:COVERALLS_REPO_TOKEN ` |
| --commitId $env:SHA --commitBranch $env:REF --commitAuthor "$CommitAuthor" ` |
| --commitEmail "$CommitAuthorEmail" --commitMessage "$CommitMessage" ` |
| --jobId $env:RUN_NUMBER --serviceName github-actions --useRelativePaths; |
| |
| if($LastExitCode -ne 0) |
| { |
| Write-Warning -Message "Can not upload coverage, last exit code is ${LastExitCode}." |
| $LastExitCode = 0; |
| } |
| |
| - name: Upload test results artefacts |
| uses: actions/upload-artifact@v1.0.0 |
| with: |
| name: "drop-ci-test-results" |
| path: './test-results' |
| |
| run-semantic-release: |
| runs-on: ubuntu-latest |
| needs: build |
| if: github.repository_owner == 'casbin-net' && github.event_name == 'push' |
| |
| steps: |
| - name: Checkout |
| uses: actions/checkout@v3 |
| |
| - name: Run semantic-release |
| run: | |
| export PATH=$PATH:$(yarn global bin) |
| yarn global add semantic-release@17.4.3 |
| semantic-release |
| |
| release: |
| runs-on: windows-latest |
| needs: run-semantic-release |
| if: github.repository_owner == 'casbin-net' && github.event_name == 'push' |
| |
| steps: |
| - name: Checkout |
| uses: actions/checkout@v3 |
| with: |
| fetch-depth: 0 |
| |
| - name: Git fetch tags |
| run: git fetch --tags |
| |
| - name: Check tags |
| run: git tag -l -n |
| |
| - name: Setup .NET SDK |
| uses: actions/setup-dotnet@v3 |
| with: |
| dotnet-version: | |
| 6.0.x |
| 7.0.x |
| 8.0.x |
| include-prerelease: true |
| |
| - name: Check .NET info |
| run: dotnet --info |
| |
| - name: Install dependencies |
| run: dotnet restore |
| |
| - name: Build solution |
| run: dotnet build -c Release --no-restore |
| |
| - name: Pack packages |
| run: | |
| $LastTag = git describe --tags (git rev-list --tags --max-count=1); |
| echo "Last tag is: $LastTag"; |
| $Version = ($LastTag).TrimStart('v'); |
| echo "Publishing version: $Version"; |
| dotnet pack -c Release -o packages /p:PackageVersion=$Version /p:Version=$Version; |
| |
| - name: Upload packages artefacts |
| uses: actions/upload-artifact@v1.0.0 |
| with: |
| name: "drop-ci-packages" |
| path: './packages' |
| |
| - name: Add myget nuget source |
| run: dotnet nuget add source https://www.myget.org/F/casbin-net/api/v2/package --name myget.org |
| |
| - name: Push packages to myget.org |
| run: dotnet nuget push .\packages\*.nupkg -s myget.org -k $env:MYGET_API_TOKEN --skip-duplicate |
| |
| - name: Add github nuget source |
| run: dotnet nuget add source https://nuget.pkg.github.com/casbin-net/index.json --name github.com --username casbin-net --password $env:GITHUB_TOKEN |
| |
| - name: Push packages to github.com |
| run: dotnet nuget push .\packages\*.nupkg -s github.com --skip-duplicate; |
| |
| - name: Push packages to nuget.org |
| run: dotnet nuget push .\packages\*.nupkg -s nuget.org -k $env:NUGET_API_TOKEN --skip-duplicate |