Release 1.7.2 (#14532) #923
Workflow file for this 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
name: Release - CI | |
on: | |
push: | |
paths-ignore: | |
- '**/*.md' | |
- 'mkdocs.yml' | |
- 'src/docs/**/*' | |
tags: | |
- 'v*.*.*' | |
env: | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
name: Build, Test, Deploy | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- name: Get the version | |
id: get_version | |
run: | | |
arrTag=(${GITHUB_REF//\// }) | |
VERSION="${arrTag[2]}" | |
VERSION="${VERSION//v}" | |
echo VERSION:${VERSION} | |
echo ::set-output name=VERSION::${VERSION} | |
shell: bash | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "15" | |
- name: Set build number | |
if: matrix.os == 'ubuntu-latest' | |
run: echo "BuildNumber=$(( $GITHUB_RUN_NUMBER + 15471 ))" >> $GITHUB_ENV | |
- name: Build | |
run: | | |
dotnet build -c Release -f net7.0 -p:Version=${{ steps.get_version.outputs.VERSION }} | |
dotnet build -c Release -f net6.0 -p:Version=${{ steps.get_version.outputs.VERSION }} | |
- name: Unit Tests | |
run: | | |
dotnet test -c Release --no-build ./test/OrchardCore.Tests/OrchardCore.Tests.csproj | |
- name: Functional Tests | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
cd test/OrchardCore.Tests.Functional | |
npm install | |
npm run cms:test | |
npm run mvc:test | |
- uses: actions/upload-artifact@v2 | |
if: matrix.os == 'ubuntu-latest' && failure() | |
with: | |
name: Functional Test failure | |
path: | | |
test/OrchardCore.Tests.Functional/cms-tests/cypress/screenshots | |
src/OrchardCore.Cms.Web/App_Data_Tests/logs | |
- name: Deploy release NuGet packages | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
dotnet pack -c Release --no-build -p:Version=${{ steps.get_version.outputs.VERSION }} -p:TreatWarningsAsErrors=false | |
dotnet nuget push './src/**/*.nupkg' -t 600 -k ${{secrets.NUGET_API_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate | |
- name: Login to DockerHub | |
if: matrix.os == 'ubuntu-latest' | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Deploy release docker image for linux | |
shell: pwsh | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
Get-ChildItem ./src/OrchardCore.Cms.Web/App_Data -Recurse | Remove-Item -Recurse -Confirm:$false | |
Get-ChildItem ./src/OrchardCore.Cms.Web/App_Data_Tests -Recurse | Remove-Item -Recurse -Confirm:$false | |
$output = [System.IO.Path]::GetFullPath("./.build/release") | |
dotnet publish -c Release --property:PublishDir=$output --no-build --framework net7.0 | |
docker build -f Dockerfile-CI -t orchardproject/orchardcore-cms-linux:latest -t orchardproject/orchardcore-cms-linux:${{ steps.get_version.outputs.VERSION }} . | |
docker push orchardproject/orchardcore-cms-linux:latest | |
docker push "orchardproject/orchardcore-cms-linux:${{ steps.get_version.outputs.VERSION }}" | |
- name: Deploy preview docker image for windows | |
if: matrix.os == 'windows-latest' | |
run: | | |
Get-ChildItem ./src/OrchardCore.Cms.Web/App_Data -Recurse | Remove-Item -Recurse -Confirm:$false | |
Get-ChildItem ./src/OrchardCore.Cms.Web/App_Data_Tests -Recurse | Remove-Item -Recurse -Confirm:$false | |
$output = [System.IO.Path]::GetFullPath("./.build/release") | |
dotnet publish -c Release --property:PublishDir=$output --no-build --framework net7.0 | |
docker build -f Dockerfile-CI -t orchardproject/orchardcore-cms-windows:latest -t orchardproject/orchardcore-cms-windows:${{ steps.get_version.outputs.VERSION }} . | |
echo "${{ secrets.DOCKERHUB_PASSWORD }}" | docker login -u="${{ secrets.DOCKERHUB_USERNAME }}" --password-stdin | |
docker push orchardproject/orchardcore-cms-windows:latest | |
docker push "orchardproject/orchardcore-cms-windows:${{ steps.get_version.outputs.VERSION }}" |