Merge pull request #1950 from pratik-joshi/CRM-13735
[civicrm-core.git] / tools / scripts / releaser / releaser.conf.txt
CommitLineData
60a40431
TO
1#!/bin/bash
2
3## The GIT repo where we can find branches and create tags
054fece0
TO
4## Note: Choose https or SSH depending on whether you've
5## configured HTTP credential cache or SSH keys.
60a40431
TO
6#git_base_url=https://github.com/civicrm
7#git_base_url=git@github.com:civicrm
8
9## Warning: This will be saved to the current user's ~/.gitconfig; should match gpg key
10git_author_name="CiviCRM"
11git_author_email="info@civicrm.org"
12
13## Local web directory for publishing tarballs, md5sums, etc
14build_dest='/tmp/www/download.civicrm.org/public'
15
16## Local web directory for publishing the latest version number
17latest='/tmp/www/latest.civicrm.org/public'
18
19## Local directory for build operations
20workdir='/tmp/www/download.civicrm.org/workdir'
21
22## Passphrase for gpg signing key
23gpg_pass="top-secret"
24
25## Remote web directory for publishing tarballs, md5sums, etc
26publish_ssh="localhost"
27publish_stable_dir=/tmp/www/publish/stable
28publish_latest_dir=/tmp/www/publish/latest
29
30## Paths to miscellaneous executables
31cmd_gitify=/Applications/MAMP/htdocs/sites/all/modules/civicrm/bin/gitify
32cmd_gpg=gpg
33cmd_md5sum=md5sum
34cmd_php=php
35cmd_rsync=rsync
36cmd_sftp=sftp
37cmd_zip=zip