Refactor publish-krewplugin.yaml to update Invoke-KubeTidy function a… #19
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: Publish Plugin to Krew | |
on: | |
push: | |
branches: | |
- main | |
- kubectl-plugin | |
release: | |
types: | |
- published | |
workflow_dispatch: | |
jobs: | |
publish: | |
runs-on: windows-latest | |
steps: | |
# Checkout the repository | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# Get the version from KubeTidy.psd1 | |
- name: Get Version from Manifest | |
id: get_version | |
run: | | |
# Get the version from the module manifest | |
$manifest = Get-Content ./KubeTidy.psd1 -Raw | Out-String | Invoke-Expression | |
$version = $manifest.ModuleVersion | |
Write-Host "Version: $version" | |
echo "::set-output name=version::$version" # Set the version as an output variable | |
# Update the KubeTidy.psm1 file for Krew Plugin | |
- name: Update KubeTidy.psm1 for Krew Plugin | |
run: | | |
# Create a copy of KubeTidy.psm1 directly in the root | |
$sourceFile = "KubeTidy.psm1" | |
$destinationFile = "kubectl-KubeTidy" | |
Copy-Item -Path $sourceFile -Destination $destinationFile -Force | |
# Prepare the param block to be inserted | |
$paramBlock = @" | |
param ( | |
[string]`$KubeConfigPath, | |
[array]`$ExclusionList, | |
[switch]`$Force, | |
[switch]`$ListClusters, | |
[array]`$MergeConfigs, | |
[string]`$DestinationConfig, | |
[switch]`$DryRun, | |
[Alias("h")] [switch]`$Help | |
) | |
"@ | |
# Read content and update it | |
$content = Get-Content $destinationFile -Raw | |
# Replace the MARKER: NEW PARAM BLOCK line with the new parameter block | |
$content = $content -replace '# MARKER: NEW PARAM BLOCK', $paramBlock | |
# Replace the MARKER: FUNCTION CALL line with the new function call | |
$content = $content -replace '# MARKER: FUNCTION CALL', '# Call the function, passing parameters manually for cross-platform compatibility`nInvoke-KubeTidy \System.Management.Automation.PSBoundParametersDictionary' | |
# Save the modified content back to the original script file | |
Set-Content -Path $destinationFile -Value $content | |
Write-Host "$destinationFile has been modified successfully." | |
# # Update kubectl-KubeTidy.yaml with the new version | |
# - name: Update Krew Manifest with Version | |
# run: | | |
# # Load the YAML content | |
# $yamlFilePath = "kubectl-KubeTidy.yaml" | |
# $yamlContent = Get-Content -Path $yamlFilePath -Raw | |
# # Update the version in the YAML | |
# $updatedYamlContent = $yamlContent -replace 'version: v\d+\.\d+\.\d+', "version: ${{ steps.get_version.outputs.version }}" | |
# # Write the updated YAML content back to the file | |
# Set-Content -Path $yamlFilePath -Value $updatedYamlContent | |
# Create tar.gz files for Linux and Darwin | |
- name: Create Tar Files | |
run: | | |
# Get the version from the previous step | |
$version = "${{ steps.get_version.outputs.version }}" | |
# Create output directory for the tar files | |
$outputDir = "krewplugin" | |
New-Item -ItemType Directory -Path $outputDir -Force | |
# Create platform-specific directories | |
$linuxDir = "$outputDir/linux" | |
$darwinDir = "$outputDir/darwin" | |
New-Item -ItemType Directory -Path $linuxDir -Force | |
New-Item -ItemType Directory -Path $darwinDir -Force | |
# Move the updated script to the appropriate platform directories | |
Copy-Item -Path "kubectl-KubeTidy" -Destination "$linuxDir/kubectl-KubeTidy" | |
Copy-Item -Path "kubectl-KubeTidy" -Destination "$darwinDir/kubectl-KubeTidy" | |
# Copy the Private folder into each platform directory | |
Copy-Item -Path "Private" -Destination "$linuxDir/Private" -Recurse -Force | |
Copy-Item -Path "Private" -Destination "$darwinDir/Private" -Recurse -Force | |
# Create tar.gz files for Linux and Darwin using the tar command | |
tar -czf "$outputDir/kubectl-KubeTidy-linux-amd64-$version.tar.gz" -C "$linuxDir" . | |
tar -czf "$outputDir/kubectl-KubeTidy-darwin-amd64-$version.tar.gz" -C "$darwinDir" . | |
# Create a GitHub release and upload the tar.gz files | |
- name: Create GitHub Release | |
id: create_release | |
uses: actions/create-release@v1 | |
with: | |
tag_name: v${{ steps.get_version.outputs.version }} # Use the version from the output | |
release_name: kubectl-KubeTidy Release ${{ steps.get_version.outputs.version }} | |
draft: false | |
prerelease: false | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Upload the Linux tar.gz Release Asset | |
- name: Upload Linux Release Asset | |
uses: actions/upload-release-asset@v1 | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ${{ github.workspace }}/krewplugin/kubectl-KubeTidy-linux-amd64-${{ steps.get_version.outputs.version }}.tar.gz | |
asset_name: kubectl-KubeTidy-linux-amd64-${{ steps.get_version.outputs.version }}.tar.gz | |
asset_content_type: application/gzip | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Upload the Darwin tar.gz Release Asset | |
- name: Upload Darwin Release Asset | |
uses: actions/upload-release-asset@v1 | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ${{ github.workspace }}/krewplugin/kubectl-KubeTidy-darwin-amd64-${{ steps.get_version.outputs.version }}.tar.gz | |
asset_name: kubectl-KubeTidy-darwin-amd64-${{ steps.get_version.outputs.version }}.tar.gz | |
asset_content_type: application/gzip | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |