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
##################################################################### | |
## BASIC SETTINGS | |
##################################################################### | |
[user] | |
name = # your name here | |
email = # your email here | |
[init] | |
defaultBranch = master | |
[core] |
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
# File: .github/actions/download-tar/action.yml | |
name: Download Tar Artifact | |
description: > | |
Download and extract a tar artifact that was previously uploaded in the workflow by the upload-tar | |
action | |
inputs: | |
name: | |
description: Artifact name | |
path: |
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
#!/usr/bin/env bash | |
split_arg() { | |
split=(${1//|/ }) | |
yml="${split[0]}" | |
sleep_duration="${split[1]}" | |
} | |
service_start() { | |
split_arg $1 |