Skip to content

Commit

Permalink
🔧 (main.yml): update docs_deploy_folder and docs_baseURL to include b…
Browse files Browse the repository at this point in the history
…ranch name

Including the branch name in the docs_deploy_folder and docs_baseURL paths ensures that documentation is correctly deployed and accessible for each specific branch. This change improves the organization and accessibility of documentation for different branches, facilitating better version control and easier navigation.
  • Loading branch information
MrHinsh committed Aug 19, 2024
1 parent 965fa75 commit 43be659
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ jobs:
default {
$Ring = "Canary";
$WingetApplicationId = "nkdagility.azure-devops-migration-tools.Canary";
$docs_deploy_folder = "./azure-devops-migration-tools/canary/"
$docs_baseURL = "/learn/azure-devops-migration-tools/canary/"
$docs_deploy_folder = "./azure-devops-migration-tools/canary/" + ${{ github.ref_name }}
$docs_baseURL = "/learn/azure-devops-migration-tools/canary/" + ${{ github.ref_name }}
$RunRelease = 'false'
}
}
Expand Down

0 comments on commit 43be659

Please sign in to comment.