I hereby claim:
- I am horvaro on github.
- I am horvaro (https://keybase.io/horvaro) on keybase.
- I have a public key ASAG6GMB5d0hxplaeGU18c025NuMKTCxiAOfZ2pbRZQzJAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
#Usage: log "Hello World!" | |
LOG_FORMAT="%Y-%m-%d %H:%M:%S %Z" | |
log() { | |
echo -e "[$(date +"${LOG_FORMAT}")] $1"; | |
} |
#!/usr/bin/env bash | |
# .Net Core SDK 3.1 installer for Debian 9 containers | |
# Invoke --> sh -c "$(curl -fsSL https://gist.githubusercontent.com/horvaro/56a95d7c0f5b97ae69745ffaf5de3607/raw/061da0bce88e9ac86468a3203a31085a686d5900/dotnetcore31_sdk_debian9.sh)" | |
set -o errexit | |
set -o nounset | |
apt-get update; \ | |
apt-get install sudo gpg wget -y |
You ca use the az
command line tool and the built-in Access Token, when you need to trigger a pipeline inside Azure DevOps on the same Organization.
- job:
displayName: "Run Pipeline"
steps:
- bash: |
az pipelines run --project 'PROJECT' --id 123456 --branch 'main'
displayName: 'Trigger Pipeline 123456'
env: