I hereby claim:
- I am mickeys on github.
- I am michaelsattler (https://keybase.io/michaelsattler) on keybase.
- I have a public key ASBWbMkqxEY5m9x91CFNBtPEiZQ4sqtZXeG_jxkRzHQZFQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # ----------------------------------------------------------------------------- | |
| # How to get the artifacts of the latest or particular numbered Jenkins build. | |
| # | |
| # This example is for the 'foobar' project; modify $BUILD_ZIP | |
| # | |
| # Jenkins API key http://build.credenceid.com:8080/user/YOURUSERNAME/configure | |
| # ----------------------------------------------------------------------------- | |
| JENKINS_USER='yourUserName' | |
| JENKINS_APIK='1234567890' | |
| # Pick one or the other ~~~ get the last one or specify a numbered Jenkins build |
| BOX_CREDS='username@example.com:password' # credentials | |
| HOSTPATH="dav.box.com/dav" # destination hostname | |
| PROD_TYPE="Top-Level Name" # path ~ level 1 | |
| PROD_AREA="Second-level Name" # path ~ level 2 | |
| PROD_MODL="Third-Level Name" # path ~ level 3 | |
| PROD_PATH="${PROD_TYPE}/${PROD_AREA}/${PROD_MODL}" # the complete path | |
| TESTFILE=$( date +%Y%m%d_%H%M%S ) # the name *is* the timestamp :-) | |
| touch $TESTFILE # create it |
| /* ---------------------------------------------------------------------------- | |
| | Author: Michael Sattler <michael@sattlers.org> | |
| | Version: 1.0.0 2017-01-24 | |
| | License: GNU General Public License v3 or better | |
| | License URL: https://www.gnu.org/licenses/gpl-3.0.en.html | |
| | | |
| | While writing WordPress content I frequently want to link to something I've | |
| | written before without having to remember whether it was a page or post. | |
| | This shortcode does just that. | |
| | |