diff --git a/README.md b/README.md index 327d658..e8d82b5 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ To run the site locally, first mirror this repo, then install Ruby for Windows. * Chose options 1 & 3 * add Ruby install dir to %PATH% variable * run `InstallSiteDependencies.bat` and rerun until completes without errors (may need to install missing components) +* In case of errors, make sure to toggle between #theme and #remote-theme in the config.yml file * run `StartJekyllLocally.bat` to verify layout works and to troubleshoot errors. diff --git a/_config.yml b/_config.yml index 83732f1..e20d3d2 100644 --- a/_config.yml +++ b/_config.yml @@ -30,6 +30,12 @@ fixed_navbar: top theme_color: '#333333' layout: post +load_paths: + - _sass + - node_modules + +sass: + sass_dir: _sass # Build settings paginate: 6 diff --git a/_posts/2024-05-07-how-to-create-azure-resources-in-your-azure-devops-pipelines,-without-using-saved-passwords.md b/_posts/2024-05-07-how-to-create-azure-resources-in-your-azure-devops-pipelines-without-using-saved-passwords.md similarity index 96% rename from _posts/2024-05-07-how-to-create-azure-resources-in-your-azure-devops-pipelines,-without-using-saved-passwords.md rename to _posts/2024-05-07-how-to-create-azure-resources-in-your-azure-devops-pipelines-without-using-saved-passwords.md index 79556d1..2bff4da 100644 --- a/_posts/2024-05-07-how-to-create-azure-resources-in-your-azure-devops-pipelines,-without-using-saved-passwords.md +++ b/_posts/2024-05-07-how-to-create-azure-resources-in-your-azure-devops-pipelines-without-using-saved-passwords.md @@ -2,7 +2,7 @@ title: "How to perform actions in Azure, in your Azure Devops Pipelines, without using Saved Passwords" date: "2024-05-07" redirect_from : 2024/05/07/How-to-create-Azure-resources-in-your-Azure-Devops-Pipelines,-without-using-Saved-Passwords -coverImage: \assets\images\2021\usingMSIswithinganADOpipeline.webp +coverImage: /assets/images/2024/MigratingAzureDevopPipelinesToUseMSIs.png categories: - "azuredevops" - "adopipeline" @@ -11,12 +11,13 @@ categories: tags: - "devops" excerpt: "Using saved passwords in Azure Devops Pipelines is sooooo 2023. The new hotness is using Azure Workload Id Federation. It only took me 27 tries to get it right, and you can learn to do it form me correctly the first time. " -fileName: '2024-05-07-how-to-create-azure-resources-in-your-azure-devops-pipelines,-without-using-saved-passwords' +fileName: '2024-05-07-how-to-create-azure-resources-in-your-azure-devops-pipelines-without-using-saved-passwords' --- Using saved passwords in Azure Devops Pipelines is sooooo 2023. The new hotness is using Azure Workload Id Federation. It only took me 27 tries to get it right, and you can learn to do it form me correctly the first time. -![Header for this post, reads 'How To Make GitHub Button'](\assets\images\2024\MigratingAzureDevopPipelinesToUseMSIs.png) +![Header for this post, reads 'How To Make GitHub Button'](/assets/images/2024/MigratingAzureDevopPipelinesToUseMSIs.png) + --- ### Post Outline diff --git a/installSiteDependencies.bat b/installSiteDependencies.bat index 2a4cc43..e7dda0c 100644 --- a/installSiteDependencies.bat +++ b/installSiteDependencies.bat @@ -1,6 +1,7 @@ gem install bundler && gem update --system 3.5.6 gem install jekyll-remote-theme && gem install jekyll-gist gem install "bulma-clean-theme" && gem install jekyll -v 3.8.5 && bundle init +echo "remeber to togle between local and remote theme if debugging" bundle add jekyll -v 3.8.5 --skip-install bundle exec jekyll new --force --skip-bundle . bundle install diff --git a/startJekyllLocally.bat b/startJekyllLocally.bat index 10d7e24..813a01e 100644 --- a/startJekyllLocally.bat +++ b/startJekyllLocally.bat @@ -1 +1,2 @@ +echo "remeber to togle between local and remote theme if debugging" bundle && bundle exec jekyll serve --incremental --host=127.0.0.1 \ No newline at end of file diff --git a/startSite.bat b/startSite.bat index f9f5a4e..e4b9dd5 100644 --- a/startSite.bat +++ b/startSite.bat @@ -1,3 +1,4 @@ +echo "remeber to togle between local and remote theme if debugging" gem install bundler && gem update --system 3.5.6 && gem install "webrick" gem install jekyll-remote-theme && gem install jekyll-gist gem install "bulma-clean-theme" && gem install jekyll -v 3.8.5 && bundle init