release v18 #21
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: Umbraco.Community.Forms.Workflows - CI | |
| on: | |
| pull_request: | |
| env: | |
| PLUGIN_PROJECT: src/Umbraco.Community.Forms.Workflows/Umbraco.Community.Forms.Workflows.csproj | |
| CLIENT_PROJECT: src/Umbraco.Community.Forms.Workflows/Client | |
| OUTPUT_PATH: ${{ github.workspace }}/.output | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| dotnet-version: ['10.x' ] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Fetch all history for all tags and branches | |
| run: git fetch --prune --unshallow | |
| - name: Setup .NET Core SDK ${{ matrix.dotnet-version }} | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: ${{ matrix.dotnet-version }} | |
| # @umbraco-cms/backoffice@18 requires Node >= 24.13 and npm >= 11 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| cache: 'npm' | |
| cache-dependency-path: '${{env.CLIENT_PROJECT}}/package-lock.json' | |
| - name: Get Release Version | |
| id: package_version | |
| run: | | |
| version=$(grep -oPm1 '(?<=<Version>)[^<]+' "${{ env.PLUGIN_PROJECT }}") | |
| echo "Detected version: $version" | |
| echo "version=$version" >> "$GITHUB_OUTPUT" | |
| - name: Check Version v${{ steps.package_version.outputs.version }} Pre-Release state | |
| id: check_prerelease | |
| run: | | |
| if [[ ${{ steps.package_version.outputs.version }} =~ ^[0-9]+\.[0-9]+\.[0-9]+-.+$ ]]; then | |
| echo "Pre-Release detected" | |
| echo "prerelease=true" >> "$GITHUB_OUTPUT" | |
| else | |
| echo "Pre-Release NOT detected" | |
| echo "prerelease=false" >> "$GITHUB_OUTPUT" | |
| fi | |
| - name: Install Node dependencies | |
| run: npm ci | |
| working-directory: ${{env.CLIENT_PROJECT}} | |
| - name: Build Client | |
| run: npm run build | |
| working-directory: ${{env.CLIENT_PROJECT}} | |
| - name: Build | |
| run: dotnet build ${{ env.PLUGIN_PROJECT }} --configuration Release | |
| - name: Create the package | |
| run: dotnet pack ${{ env.PLUGIN_PROJECT }} --no-build --no-restore --configuration Release -o ${{ env.OUTPUT_PATH }} | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: nuget | |
| path: ${{ env.OUTPUT_PATH }}/ |