Merge pull request #16 from KelvinTegelaar/master #18
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: Generate Release Notes and Upload Production to Azure | |
| on: | |
| push: | |
| branches: | |
| - master | |
| permissions: | |
| contents: write | |
| jobs: | |
| release: | |
| if: github.event.repository.fork == false && github.event_name == 'push' | |
| name: Generate Release Notes and Upload to Azure | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checkout the repository | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| # Read and Trim Version | |
| - name: Read and Trim Version | |
| id: get_version | |
| run: | | |
| if [ ! -f version_latest.txt ]; then | |
| echo "Error: version_latest.txt not found!" | |
| exit 1 | |
| fi | |
| VERSION=$(cat version_latest.txt | tr -d '[:space:]') | |
| if [ -z "$VERSION" ]; then | |
| echo "Error: version_latest.txt is empty after trimming!" | |
| exit 1 | |
| fi | |
| echo "version=$VERSION" >> $GITHUB_OUTPUT | |
| # Exit if Tag Already Exists | |
| - name: Check if Tag Exists | |
| id: tag_check | |
| run: | | |
| git fetch --tags | |
| if git rev-parse "refs/tags/${{ steps.get_version.outputs.version }}" >/dev/null 2>&1; then | |
| echo "tag_exists=true" >> $GITHUB_ENV | |
| echo "Tag ${{ steps.get_version.outputs.version }} already exists. Exiting workflow successfully." | |
| else | |
| echo "tag_exists=false" >> $GITHUB_ENV | |
| fi | |
| # Generate Release Notes | |
| - name: Generate Release Notes | |
| id: changelog | |
| if: env.tag_exists == 'false' | |
| uses: mikepenz/[email protected] | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # Create a new release tag | |
| - name: Create GitHub Release | |
| if: env.tag_exists == 'false' | |
| uses: ncipollo/[email protected] | |
| with: | |
| tag: ${{ steps.get_version.outputs.version }} | |
| name: "v${{ steps.get_version.outputs.version }}" | |
| draft: false | |
| prerelease: false | |
| makeLatest: true | |
| body: ${{ steps.changelog.outputs.changelog }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Setup PowerShell module cache | |
| id: cacher | |
| uses: actions/cache@v3 | |
| with: | |
| path: "~/.local/share/powershell/Modules" | |
| key: ${{ runner.os }}-ModuleBuilder | |
| - name: Install ModuleBuilder | |
| if: steps.cacher.outputs.cache-hit != 'true' | |
| shell: pwsh | |
| run: | | |
| Set-PSRepository PSGallery -InstallationPolicy Trusted | |
| Install-Module ModuleBuilder -AllowClobber -Force | |
| - name: Build CIPPCore Module | |
| shell: pwsh | |
| run: | | |
| $ModulePath = Join-Path $env:GITHUB_WORKSPACE "Modules/CIPPCore" | |
| $OutputPath = Join-Path $env:GITHUB_WORKSPACE "Output" | |
| Write-Host "Building module from: $ModulePath" | |
| Write-Host "Output directory: $OutputPath" | |
| # Generate function permissions before replacing the source module | |
| $ToolsPath = Join-Path $env:GITHUB_WORKSPACE "Tools" | |
| $ScriptPath = Join-Path $ToolsPath "Build-FunctionPermissions.ps1" | |
| pwsh -File $ScriptPath -ModulePath $ModulePath | |
| # Build the module using ModuleBuilder | |
| Build-Module -SourcePath $ModulePath -OutputDirectory $OutputPath -Verbose | |
| # Replace the source module with the built module | |
| Remove-Item -Path $ModulePath -Recurse -Force | |
| Copy-Item -Path (Join-Path $OutputPath "CIPPCore") -Destination $ModulePath -Recurse -Force | |
| Write-Host "Module built and replaced successfully" | |
| # Clean up output directory | |
| Remove-Item -Path $OutputPath -Recurse -Force | |
| - name: Build CippExtensions Module | |
| shell: pwsh | |
| run: | | |
| $ModulePath = Join-Path $env:GITHUB_WORKSPACE "Modules/CippExtensions" | |
| $OutputPath = Join-Path $env:GITHUB_WORKSPACE "Output" | |
| Write-Host "Building module from: $ModulePath" | |
| Write-Host "Output directory: $OutputPath" | |
| # Build the module using ModuleBuilder | |
| Build-Module -SourcePath $ModulePath -OutputDirectory $OutputPath -Verbose | |
| # Replace the source module with the built module | |
| Remove-Item -Path $ModulePath -Recurse -Force | |
| Copy-Item -Path (Join-Path $OutputPath "CippExtensions") -Destination $ModulePath -Recurse -Force | |
| Write-Host "Module built and replaced successfully" | |
| # Clean up output directory | |
| Remove-Item -Path $OutputPath -Recurse -Force | |
| # Create ZIP File in a New Source Directory | |
| - name: Prepare and Zip Release Files | |
| if: env.tag_exists == 'false' | |
| run: | | |
| mkdir -p src/releases | |
| zip -r src/releases/release_${{ steps.get_version.outputs.version }}.zip . \ | |
| --exclude "./src/releases/*" \ | |
| --exclude ".*" \ | |
| --exclude ".*/**" | |
| zip -r src/releases/latest.zip . \ | |
| --exclude "./src/releases/*" \ | |
| --exclude ".*" \ | |
| --exclude ".*/**" | |
| # Upload to Azure Blob Storage | |
| - name: Azure Blob Upload with Destination folder defined | |
| if: env.tag_exists == 'false' | |
| uses: LanceMcCarthy/[email protected] | |
| with: | |
| connection_string: ${{ secrets.AZURE_CONNECTION_STRING }} | |
| container_name: cipp-api | |
| source_folder: src/releases/ | |
| destination_folder: / | |
| delete_if_exists: true |