Table Of Content This is a part 3 in a 3 part blog series about GitHub Actions. Part 1: Github Actions 2.0 Is Here!!! – A first look and simple walkthrough of GitHub Actions 2.0 for CI/CD Part 2: Git Actions 2.0-Let’s do something a little more involved – A deeper dive using GitHub Actions … [Read more…]
Github Actions 2.0–Let’s do something a little more involved
Table Of Content This is a part 2 in a 3 part blog series about GitHub Actions. Part 1: Github Actions 2.0 Is Here!!! – A first look and simple walkthrough of GitHub Actions 2.0 for CI/CD Part 2: Git Actions 2.0-Let’s do something a little more involved – A deeper dive using GitHub Actions … [Read more…]
GitHub Actions 2.0 IS HERE!!!!!!
Table Of Content This is a part 1 in a 3 part blog series about GitHub Actions. Part 1: Github Actions 2.0 Is Here!!! – A first look and simple walkthrough of GitHub Actions 2.0 for CI/CD Part 2: Git Actions 2.0-Let’s do something a little more involved – A deeper dive using GitHub Actions … [Read more…]
Bulk Uploading Data with bcp.exe into Azure SQL Using Azure Pipelines uploads 0 rows!!!! WTF?
A colleague of mine asked for some help building out a DevOps pipeline that would provision a web app and a database, upload default data held in csv files into the database, and then deploy the web app and subsequent schema changes. Piece Of Cake. Totally simple. How hard could this be? And what could … [Read more…]
How do you break out of ForEach-Object loop in powershell????
I was doing some simple looping using ForEach-Object and I wanted to break out of the loop after I found the value I was looking for. Naturally, I did this: Yeah, that didn’t work out so well. That broke out of the entire script I was running. Some quick googling…. don’t use break or continue … [Read more…]
PowerShell Invoke-RestMethod : The underlying connection was closed: An unexpected error occurred on a send
As I’m writing more PowerShell (what I really mean is googling PowerShell or asking Steven @StevenMurawski), I ran into this weird thing. I was trying to hit an Azure Function that I wrote using Invoke-RestMethod and I kept getting the error: Invoke-RestMethod : The underlying connection was closed: An unexpected error occurred on a send … [Read more…]
Infrastructure as Code using the Azure CLI (or The URList has pipelines!!!!)
Recently Burke Holland (@burkeholland) and Cecil Phillip (@cecilphillip) asked me to help devops their URList project (actually, I’m not so sure if they asked or if I just kept pestering them until they let me on the team… ). At first glance, I thought this was going to be simple. The URList only consists of … [Read more…]
The URList has DevOps!!! But… We Can Make It Even BETTER!!!!!
Recently, Burke Holland (@burkeholland) and Cecil Phillip (@cecilphillip) released their awesome app The Urlist, a real world serverless app (check it out, it’s cool). After reading Burke’s blog post talking about The Urlist, I came away with 3 conclusions. Very cool app and very cool use of serverless technology Burke’s blogging style is freaking awesome!!! … [Read more…]
Azure Pipeline Announcements at Build 2019
Build was ridiculously exciting and fun (although EXHAUSTING for me as I wasn’t really supposed to be there. Was supposed to stay home and “rest”. Doesn’t that sound horrible? Resting???? While BUILD is going on????). We announced all sorts of new and cool stuff around Azure DevOps. Here’s a list of all Azure DevOps related … [Read more…]
Getting Visual Studio Code Analysis and Code Metrics in an Azure Pipeline Build (part 1)
I was recently asked how to get the code analysis and code metrics info from visual studio into an Azure Pipeline build. My first thought was, how hard could it be? Sure I’ll write a blog post about it. Lol… turns out, it was a little harder than I expected. Let’s dive in and I’ll … [Read more…]